flask/flask_website/templates/snippets/layout.html

11 lines
244 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block head %}
{{ super() }}
<style type=text/css>
2010-05-03 11:20:52 +02:00
h1 { background-image: url(/static/snippets.png); }
</style>
{% endblock %}
{% block body_title %}
<h1><span>Flask Snippets</span></h1>
{% endblock %}