stuff-from-scratch/test/data/index.html
2022-10-12 09:01:19 +01:00

14 lines
No EOL
319 B
HTML

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