20 lines
386 B
HTML
20 lines
386 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<body>
|
|
<!--
|
|
<nav>
|
|
<a href="/">Home</a>
|
|
<a href="/blog/">Blog</a>
|
|
</nav>
|
|
-->
|
|
<h1>{{ page.title }}</h1>
|
|
<section>{{ content }}</section>
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|