SOITA/templates/base.html

72 lines
2.1 KiB
HTML
Raw Normal View History

2021-12-08 19:28:56 +01:00
<!DOCTYPE html>
2021-12-09 23:25:35 +01:00
{% load static %}
2021-12-08 19:28:56 +01:00
<html lang="en">
<head>
2021-12-09 23:25:35 +01:00
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
<!-- <style type="text/css">-->
<!-- .sidenav {-->
<!-- height: 100%;-->
<!-- width: 160px;-->
<!-- position: fixed;-->
<!-- z-index: 1;-->
<!-- top: 0;-->
<!-- left: 0;-->
<!-- background-color: #111;-->
<!-- overflow-x: :hidden;-->
<!-- padding-top: 20px;-->
<!-- }-->
2021-12-08 19:28:56 +01:00
2021-12-09 23:25:35 +01:00
<!-- .sidenav a {-->
<!-- padding: 6px 8px 6px 16px;-->
<!-- text-decoration: none;-->
<!-- font-size: 20px;-->
<!-- color: #818181;-->
<!-- display: block;-->
<!-- line-height: 1.6;-->
<!-- }-->
<!-- .sidenav a:hover {-->
<!-- color: #f1f1f1;-->
<!-- }-->
<!-- .main {-->
<!-- margin-left: 160px;-->
<!-- padding: 0px 10px;-->
<!-- }-->
<!-- </style>-->
<title>SOITA | {% block title %}{% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}">
2021-12-08 19:28:56 +01:00
</head>
<body>
2021-12-09 23:25:35 +01:00
<div class="sidenav">
<a href="/">Home</a>
2021-12-23 14:03:12 +01:00
<a href="/test/create">Create test</a>
<a href="/users/tests">Your tests</a>
<p>Categories</p>
<a href="/tests/category/1">Język polski</a>
<a href="/tests/category/2">Język angielski</a>
<a href="/tests/category/3">Język niemiecki</a>
<a href="/tests/category/4">Matematyka</a>
<a href="/tests/category/5">Informatyka</a>
<a href="/tests/category/6">Fizyka</a>
<a href="/tests/category/7">Chemia</a>
<a href="/tests/category/8">Biologia</a>
<a href="/tests/category/9">Geografia</a>
<a href="/tests/category/10">Historia</a>
<p>Account</p>
<a href="/users/account">Settings</a>
<a href="/users/logout">Logout</a>
2021-12-09 23:25:35 +01:00
</div>
<div id="content", name="content", class="main">
{% block content %}
{% endblock %}
</div>
2021-12-08 19:28:56 +01:00
</body>
</html>