site/templates/base.html
missing 23b3cca0a7 Various changes
- color scheme
- built with zola link
- font subsetting
- ubuntu font
- remove 404 zola-page
- resize pfp to 32*32
- remove whitespace from <title>
2022-07-27 17:12:44 -07:00

26 lines
620 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
{%- if section -%}
{{ section.title }}
{%- else -%}
{%- if page -%}
{{ page.title }}
{%- else -%}
404 Page missing
{%- endif -%}
{%- endif -%}
</title>
<link rel="icon" type="image/x-icon" href='{{ get_url(path="/favicon.ico") }}'>
<link rel="stylesheet" href='{{ get_url(path="/css/index.css") }}'>
</head>
<body>
{% block content %} {% endblock %}
<p class="built-with-zola">Built with <a href="https://getzola.org">zola</a></p>
</body>
</html>