Rebuilding with CodeIgniter 4

This commit is contained in:
Timothy Rogers 2020-07-27 22:22:06 -04:00
parent e6dcc92267
commit 3bce4ad0ac
92 changed files with 7304 additions and 380 deletions

38
app/Views/pages/home.php Normal file
View file

@ -0,0 +1,38 @@
<main role="main">
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-auto">
<img src="assets/avatar_1.png" class="rounded float-left" alt="avatar"/>
</div>
<div class="col-6">
<h1 class="display-3">HACK13's Site</h1>
<p>Just another fox on the internet.<br>
<strong>Other Aliases:</strong> Timothy Vyper, kite552, dothacker552</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Blog</h2>
<p>Read my ramblings from my history as well as few things I post from time to time. I don't write on it often, but I do plan to try and contribute more when I have time. </p>
<p><a class="btn btn-secondary" href="https://blog.hack13.me/" role="button">Read Blog &raquo;</a></p>
</div>
<div class="col-md-4">
<h2>Guides</h2>
<p>From time to time I will write up a guide on how to accomplish something that I did so that if someone else comes upon it they can read what I did to accomplish the same. </p>
<p><a class="btn btn-secondary" href="/guides" role="button">View Guides &raquo;</a></p>
</div>
<div class="col-md-4">
<h2>Projects</h2>
<p>While I am primarily a System Administrator, I really enjoy open source and I like to code here and there. So if you are interested in seeing some of my work and projects I list them here.</p>
<p><a class="btn btn-secondary" href="/projects" role="button">Projects &raquo;</a></p>
</div>
</div>
<hr>
</div>
</main>