new_blog/templates/default.html
2024-08-01 00:48:50 -04:00

30 lines
785 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Shake Blog — {{{title}}}</title>
<link rel="stylesheet" type="text/css" href="/css/default.css" />
</head>
<body>
<div id="header">
<div id="logo">
<a href="/">My Shake Blog</a>
</div>
<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>