18 lines
532 B
HTML
18 lines
532 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Drulum{% endblock %}</title>
|
|
<link rel="stylesheet" href="{% static 'css/base.css' %}">
|
|
</head>
|
|
<body class="font-serif">
|
|
{% block page %}
|
|
{% block header %}{% include 'header.html' %}{% endblock %}
|
|
{% block content %}{% endblock %}
|
|
{% block footer %}{% include 'footer.html' %}{% endblock %}
|
|
{% endblock %}
|
|
</body>
|
|
</html> |