new_blog/templates/default.html

26 lines
684 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{{title}}} · Pagwin's website</title>
<link rel="stylesheet" type="text/css" href="/static/css/default.css" />
</head>
<body class="dark">
<div id="header">
<div id="navigation">
<a href="/">Home</a>
<a href="/about/">About</a>
<a href="/contact/">Contact</a>
<a href="/archive/">Archive</a>
</div>
</div>
<div id="content">
<h1>{{{title}}}</h1>
{{{content}}}
</div>
<div id="footer">
Site proudly generated by <a href="https://shakebuild.com">Shake</a>
</div>
</body>
</html>