2022-03-19 03:04:32 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>
|
|
|
|
{% if page.title %}
|
|
|
|
{{ page.title }}
|
|
|
|
{% else %}
|
|
|
|
Mountain Linux Club
|
|
|
|
{% endif %}
|
|
|
|
</title>
|
2022-03-20 18:24:55 +00:00
|
|
|
<link rel="stylesheet" href="{{ get_url(path='main.css') }}">
|
2022-03-19 03:04:32 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-03-20 18:24:55 +00:00
|
|
|
{% include "sidebar.html" %}
|
|
|
|
<main>
|
|
|
|
<article>
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</article>
|
|
|
|
</main>
|
2022-03-19 03:04:32 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|