Flask-Workshop/templates/page1.html

13 lines
296 B
HTML
Raw Normal View History

2020-11-22 13:41:09 +00:00
{% extends "layout.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 on my awesome homepage.
{% endblock %}