27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html class="h-100" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Quiz The Word - {{ title }}</title>
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/darkly/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body class="d-flex flex-column h-100">
|
|
<nav class="nav vertical-nav">
|
|
<a class="nav-link" href="{{ url_for('multiple_choice_category') }}">Multiple Choice</a>
|
|
<a class="nav-link" href="{{ url_for('hidden_answer_category') }}">Hidden Answer</a>
|
|
</nav>
|
|
{% block body %}{% endblock %}
|
|
<footer class="mt-auto py-3">
|
|
<div class="container text-center">
|
|
<span class="">Created By ItIsGood.com</span>
|
|
</div>
|
|
</footer>
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html> |