picture-display/src/pictures/templates/pictures/base.html
2021-01-24 16:01:36 +01:00

23 lines
452 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Picture Display</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static "pictures/style.css" %}">
{% block extend_head %}
{% endblock %}
</head>
<body>
<nav>
{% block buttons %}{% endblock %}
</nav>
<main>
{% block content %}
{% endblock %}
</main>
</body>
</html>