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

25 lines
542 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 "vendor/fontawesome/css/all.min.css" %}">
<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>