35 lines
809 B
HTML
35 lines
809 B
HTML
{% extends "project.html" %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block styles %}
|
|
<link rel="stylesheet" href="{% static "kaehmy/css/base.css" %}">
|
|
<link rel="stylesheet" href="{% static "kaehmy/css/header.css" %}">
|
|
<link rel="stylesheet" href="{% static "kaehmy/css/nav.css" %}">
|
|
<link rel="stylesheet" href="{% static "kaehmy/css/footer.css" %}">
|
|
{% endblock styles %}
|
|
|
|
{% block body %}
|
|
|
|
{% block header %}
|
|
<div class="kaehmy_header">
|
|
{% include "kaehmy:header.html" %}
|
|
</div>
|
|
{% endblock header %}
|
|
|
|
{% block navigation %}
|
|
{% include "kaehmy:navigation.html" %}
|
|
{% endblock %}
|
|
|
|
<div class="kaehmy-content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="footer">
|
|
{% block footer %}
|
|
{% include "kaehmy:footer.html" %}
|
|
{% endblock footer %}
|
|
</div>
|
|
|
|
{% endblock body %} |