website/templates/base.html

17 lines
286 B
HTML
Raw Normal View History

2022-03-19 03:04:32 +00:00
<html>
<head>
<title>
{% if page.title %}
{{ page.title }}
{% else %}
Mountain Linux Club
{% endif %}
</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>