rf/templates/default.html
2018-08-27 14:55:02 +12:00

35 lines
987 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="no-referrer">
<title>rf - $title$</title>
<link rel="stylesheet" href="/css/default.css" />
$favicons$
</head>
<body>
<header>
<div class="logo">
<a href="/">Regular Flolloping</a>
</div>
<nav class="navbar">
<a href="/">Home</a>
<a href="/about/">About</a>
<a href="/contact/">Contact</a>
<a href="/archive/">Archive</a>
</nav>
</header>
<main role="main">
<h1>$title$</h1>
$body$
</main>
<footer>
powered by <a href="http://jaspervdj.be/hakyll">Hakyll</a>
</footer>
</body>
</html>