Fix most of html templates

This commit is contained in:
Aarni Halinen
2022-08-03 22:46:14 +03:00
parent 2f0143a9ae
commit f51d71e045
73 changed files with 98 additions and 88 deletions
+28
View File
@@ -0,0 +1,28 @@
{% extends "project.html" %}
{% load static %}
{% load i18n %}
{% block styles %}
<link rel="stylesheet" href="{% static "ohlhafv/css/base.css" %}">
<link rel="stylesheet" href="{% static "ohlhafv/css/header.css" %}">
<link rel="stylesheet" href="{% static "ohlhafv/css/nav.css" %}">
{% endblock styles %}
{% block body %}
{% block header %}
{% include "ohlhafv/header.html" %}
{% endblock header %}
{% block navigation %}
{% include "ohlhafv/navigation.html" %}
{% endblock %}
{% block content %}
{% endblock %}
{% block footer %}
{% include "ohlhafv/footer.html" %}
{% endblock footer %}
{% endblock body %}