new_blog/templates/default.html
2024-11-05 15:25:48 -05:00

31 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- not sure if this is good or bad for mobile
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
<title>{{{title}}} · Pagwin's website</title>
<link rel="stylesheet" type="text/css" href="/static/css/layout.css" />
<link rel="stylesheet" type="text/css" href="/static/css/colors.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/index.xml">
<script type="module" src="/static/js/code_highlighting.mjs"></script>
</head>
<body class="light">
<!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup -->
<div id="header">
<a class="nav-link" href="/">Home</a>
<a class="nav-link" href="/posts/">Blog Posts</a>
<a class="nav-link" href="/links/">Links</a>
</div>
<div id="content-outer">
<div id="content">
{{{content}}}
</div>
</div>
<div id="footer">
</div>
</body>
</html>