34 lines
812 B
HTML
34 lines
812 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}{% endblock title %}My Site</title>
|
|
<link rel="stylesheet" type="text/css" href="/site.css">
|
|
<link rel="stylesheet" type="text/css" href="/syntax-highlighting.css">
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<link rel="alternate" type="application/rss+xml" title="My Site" href="/rss/">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
<header>
|
|
<h2>My Site</h2>
|
|
<nav>
|
|
<a href="/">Home</a> |
|
|
<a href="/archive">Archive</a> |
|
|
<a href="/about">About</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock content %}
|
|
</main>
|
|
<footer>
|
|
© {{ now() | date(format="%Y") }} - My Site, by Me
|
|
</footer>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |