quiz-the-word/QuizTheWord/templates/base.html

27 lines
1.2 KiB
HTML
Raw Normal View History

2021-03-06 14:29:44 -08:00
<!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') }}">
2021-03-06 14:29:44 -08:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
2021-03-18 20:08:19 -07:00
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/darkly/bootstrap.min.css">
2021-03-06 14:29:44 -08:00
<link rel="stylesheet" href="/static/style.css">
{% block head %}{% endblock %}
</head>
<body class="d-flex flex-column h-100">
<nav class="nav vertical-nav">
2021-03-18 20:08:19 -07:00
<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>
2021-03-06 14:29:44 -08:00
</nav>
{% block body %}{% endblock %}
<footer class="mt-auto py-3">
<div class="container text-center">
<span class="">Created By ItIsGood.com</span>
</div>
</footer>
</body>
<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 %}
</html>