blob: 1aeca36caef0d0fc430dbcc9af1710d51c9f8c30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ page_title }} | {{ site_name }}</title>
<link rel="stylesheet" href="{{ base_path() }}/assets/index.css">
<link rel="icon" type="image/svg+xml" href="{{ base_path() }}/assets/favicon.svg">
<script type="module" src="{{ base_path() }}/assets/index.js"></script>
</head>
<body>
<header class="container">
<nav class="navbar">
<a class="navbar-brand" href="{{ url_for('quiz_list') }}">{{ site_name }}</a>
</nav>
</header>
<main class="container mt-5">
<h1 class="mb-4">{{ page_title }}</h1>
{% block content %}{% endblock %}
</main>
<footer class="container text-center mt-5 mb-4">
{{ site_name }} - PHPerKaigi 2024
</footer>
</body>
</html>
|