pbe/example-site/templates/base.html

34 lines
818 B
HTML
Raw Normal View History

2023-06-27 17:18:52 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Site :: {% block title %}{% endblock title %}</title>
<link rel="stylesheet" type="text/css" href="/site.css">
<link rel="stylesheet" type="text/css" href="/syntax-highlighting.css">
2023-06-27 17:18:52 -04:00
<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>
&copy; {{ now() | date(format="%Y") }} - My Site, by Me
</footer>
</div>
</body>
</html>