picture-display/src/pictures/templates/pictures/base.html

25 lines
542 B
HTML
Raw Normal View History

2021-01-24 15:43:51 +01:00
{% 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">
2021-01-24 16:31:13 +01:00
<link rel="stylesheet" href="{% static "vendor/fontawesome/css/all.min.css" %}">
2021-01-24 15:43:51 +01:00
<link rel="stylesheet" href="{% static "pictures/style.css" %}">
2021-01-24 16:01:36 +01:00
{% block extend_head %}
{% endblock %}
2021-01-24 15:43:51 +01:00
</head>
<body>
<nav>
2021-01-24 16:31:13 +01:00
{% block buttons %}
{% endblock %}
2021-01-24 15:43:51 +01:00
</nav>
<main>
{% block content %}
{% endblock %}
</main>
</body>
</html>