Files
groclist/frontend/templates/index.html
T

15 lines
311 B
HTML

{% extends "base.html" %}
{% block title %}Index{% endblock %}
{% block head %}
{{ super() }}
<style type="text/css">
.important { color: #336699; }
</style>
{% endblock %}
{% block content %}
<h1>Groclist</h1>
<p class="important">
Welkom bij Groclist
</p>
{% endblock %}