corrugatedcardboard/templates/base.html

29 lines
No EOL
864 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 %}{{ title }}{% endblock %} - {{ site_name }}</title>
<link rel="stylesheet" href="{{ asset_endpoint }}/css/pico.css" />
<link rel="stylesheet" href="{{ asset_endpoint }}/css/main.css" />
</head>
<body>
<nav class="container-fluid">
<ul>
<li><a href="{{ url }}">Home</a></li>
<li><a href="{{ url }}/posts">Posts</a></li>
</ul>
<ul>
<li><a href="{{ url }}/account">Account</a></li>
</ul>
</nav>
<main class="{% block container %}{% endblock %}">
{% block page %}{% endblock %}
</main>
<footer class="container">
<i>Powered by <a href="https://git.gaycatgirl.sex/evie/corrugatedcardboard">CorrugatedCardboard</a></i>
</footer>
</body>
</html>