blob: 3da4715e9e423361cf593d25f8201f0880c02b57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<title>Python | {% block title %}{% endblock %}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/js/uikit.min.js"></script>
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="stylesheet" href="/static/uikit_blurple.css" />
<link rel="stylesheet" href="/static/style.css" />
{% endblock %}
</head>
<body class="page-{{ current_page }}">
{% include "main/navigation.html" %}
{% if current_page != "index" %}
<div class="uk-container uk-section" style="padding-top: 10px; padding-bottom: 10px;">
<div class="uk-container uk-container-small">
<div class="uk-alert-danger" uk-alert>
<p>
Please note: this site is under construction. What you see now may be vastly different
from the final project state. Feel free to chat to us on Discord if you're curious!
</p>
</div>
</div>
</div>
{% endif %}
{% block content %}{% endblock %}
</body>
</html>
|