Added base template.
parent
7b8a57fc92
commit
5ccb53fb5d
|
|
@ -0,0 +1,18 @@
|
|||
{% 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>
|
||||
{% block page %}
|
||||
{% block header %}{% include 'header.html' %}{% endblock %}
|
||||
{% block content %}{% endblock %}
|
||||
{% block footer %}{% include 'footer.html' %}{% endblock %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue