Bootstrapped the site from scratch following a data loss event. Set up a simple HTML/CSS page served from nginx. Added a navbar with the index page anchored in the top-left, a blog page link, and a link to the Forgejo instance. Added contact info and a genealogy blurb to the index page. Added an example resume page linked from the navbar.
10 lines
395 B
HTML
10 lines
395 B
HTML
<nav class="navbar">
|
|
<div class="nav-container">
|
|
<a href="/" class="nav-brand">Home</a>
|
|
<ul class="nav-menu">
|
|
<li><a href="/blog.html">Blog</a></li>
|
|
<li><a href="/resume.html">Resume</a></li>
|
|
<li><a href="https://forgejo.binning.net" target="_blank">Forgejo</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|