You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wish/utils/templates/base.html

56 lines
1003 B
HTML

{% load static %}
<!doctype html>
<html>
<head>
{# Meta: #}
<meta charset=utf-8>
{% if GENERATOR %}
<meta name=generator content="{{ GENERATOR }}">
{% endif %}
{% if AUTHOR %}
<meta name=author content="{{ AUTHOR }}">
{% endif %}
{% if SITE_DESCRIPTION %}
<meta name=description content="{{ SITE_DESCRIPTION }}">
{% endif %}
<meta name=referref content=no-referer>
{% comment %}
<meta name=theme-color content="">
<meta name=color-scheme content="dark">
{% endcomment %}
{# TODO: More meta tags #}
{# CSS and other: #}
<link rel=stylesheet href="{% static 'theme.css' %}">
{# Title setting #}
{% if page_title %}
<title>{{ page_title }} {{ SITENAME }}</title>
{% else %}
<title>{{ SITENAME }}</title>
{% endif %}
</head>
<body>
<header>
{% include "header.html" %}
</header>
<nav>
{% include "sidebar.html" %}
</nav>
<main>
{% block content %}
<p>No content here...</p>
{% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
</body>
</html>