44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
|
|
<title>SOITA | {% block title %}{% endblock %}</title>
|
|
<meta name="description" content="{% block description %}{% endblock %}">
|
|
{% block additional_head %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="sidenav">
|
|
<a href="{% url 'home' %}">Home</a>
|
|
<a href="{% url 'newTest' %}">Create test</a>
|
|
<a href="{% url 'myTests' %}">Your tests</a>
|
|
<a href="{% url 'solvedTests' %}">Solved tests</a>
|
|
<a href="{% url 'help' %}">Help</a>
|
|
<p>Categories</p>
|
|
<a href="/category/JezykPolski">Język polski</a>
|
|
<a href="/category/JezykAngielski">Język angielski</a>
|
|
<a href="/category/JezykNiemiecki">Język niemiecki</a>
|
|
<a href="/category/Matematyka">Matematyka</a>
|
|
<a href="/category/Informatyka">Informatyka</a>
|
|
<a href="/category/Fizyka">Fizyka</a>
|
|
<a href="/category/Chemia">Chemia</a>
|
|
<a href="/category/Biologia">Biologia</a>
|
|
<a href="/category/Geografia">Geografia</a>
|
|
<a href="/category/Historia">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>
|
|
|