website/templates/base.html

17 lines
286 B
HTML

<html>
<head>
<title>
{% if page.title %}
{{ page.title }}
{% else %}
Mountain Linux Club
{% endif %}
</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>