72 lines
2.1 KiB
HTML
72 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
<html lang="en">
|
|
<head>
|
|
<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;-->
|
|
<!-- }-->
|
|
|
|
<!-- .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 %}">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="sidenav">
|
|
<a href="/">Home</a>
|
|
<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>
|
|
</div>
|
|
|
|
<div id="content", name="content", class="main">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
|