simple shortcodes

This commit is contained in:
lynxize 2024-11-12 21:06:52 -07:00
parent 1d39002bb5
commit ba252d7d6a
10 changed files with 209 additions and 9 deletions

View file

@ -2,17 +2,43 @@
<html lang="en">
<head>
<title>lynxize</title>
<meta name="description" content="Very WIP personal site v2">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lynxize</title>
<meta name="color-scheme" content="dark light" />
<link rel="stylesheet" type="text/css" href="/main.css">
</head>
<body>
<section class="section">
<div class="container">
<header>
<nav>
<a href="/">/home</a>
<a href="/about">/about</a>
<a href="/blog">/blog</a>
</nav>
</header>
<div id="new-site-warning">
Hey! This is a new version of my site rewritten from scratch!
I still don't really know what I'm doing with web dev, and this is still <i>very</i> WIP.
Stuff is still very broken/incomplete relative to the old site, but I'm working on it! (Hopefully)
</div>
<div class="content">
{% block content %} {% endblock %}
</div>
</section>
</body>
<footer>
<div>
<hr>
&copy lynxize 2024
-
<a href="https://github.com/lynxize/">GitHub</a>
|
<a rel="me" href="https://mastodon.lynxize.dev/@emilia">Mastodon</a>
</div>
</footer>
</body>
</html>