You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
833 B
HTML
29 lines
833 B
HTML
{% load static %} <!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<link rel="stylesheet" href="{% static 'startpage/css/base.css' %}">
|
|
<link rel="stylesheet" href="{% static 'startpage/css/fonts.css' %}">
|
|
<link rel="stylesheet" href="{% static 'startpage/css/people_grid.css' %}">
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'startpage/img/favicon.png' %}"/>
|
|
</head>
|
|
|
|
<body>
|
|
{% include "startpage/navigation.html" %}
|
|
|
|
<div class="main">
|
|
{% block header %}
|
|
{% include "startpage/header.html" %}
|
|
{% endblock %}
|
|
|
|
<div class="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include "startpage/footer.html" %}
|
|
</body>
|
|
</html>
|