website/templates/base.html

21 lines
604 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ config.title }}{% endblock %}</title>
<link rel="stylesheet" href="/style.css">
{% if config.generate_feeds %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml">
{% endif %}
</head>
<body>
<nav>
<a href="/">go home</a> |
<a href="/links/">bookmarks</a> |
<a href="/now/">now</a> |
sign my <a href="/guestbook/">guestbook</a>
</nav>
{% block content %}{% endblock %}
</body>
</html>