41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>TablequizDB</title>
|
||
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
||
|
|
<style type="text/css">
|
||
|
|
.input-group.input-group-unstyled input.form-control {
|
||
|
|
-webkit-border-radius: 4px;
|
||
|
|
-moz-border-radius: 4px;
|
||
|
|
border-radius: 4px;
|
||
|
|
}
|
||
|
|
.input-group-unstyled .input-group-addon {
|
||
|
|
border-radius: 4px;
|
||
|
|
border: 0px;
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<link href="https://ka-f.fontawesome.com/releases/v6.5.2/css/free.min.css?token=5f65fb5684" rel="stylesheet" />
|
||
|
|
<link href="https://ka-f.fontawesome.com/releases/v6.5.2/css/free-v4-shims.min.css?token=5f65fb5684" rel="stylesheet" />
|
||
|
|
<link href="https://ka-f.fontawesome.com/releases/v6.5.2/css/free-v5-font-face.min.css?token=5f65fb5684" rel="stylesheet" />
|
||
|
|
<link href="https://ka-f.fontawesome.com/releases/v6.5.2/css/free-v4-font-face.min.css?token=5f65fb5684" rel="stylesheet" />
|
||
|
|
{# <script src="https://kit.fontawesome.com/5f65fb5684.js" crossorigin="anonymous"></script> #}
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container mt-2">
|
||
|
|
<header>
|
||
|
|
<h1>Tablequiz DB</h1>
|
||
|
|
<nav>
|
||
|
|
<a class="nav-item" href="/questions/">Questions</a>
|
||
|
|
<a class="nav-item" href="/quizes/">Quizes</a>
|
||
|
|
</nav>
|
||
|
|
</header>
|
||
|
|
{% block content %}
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|