flask/flask_website/templates/extensions/layout.html
2010-05-16 14:33:32 +02:00

10 lines
277 B
HTML

{% extends "layout.html" %}
{% block head %}
{{ super() }}
<style type=text/css>
h1 { background-image: url({{ url_for('.static', filename='extensions.png') }}); }
</style>
{% endblock %}
{% block body_title %}
<h1><span>Flask Extensions</span></h1>
{% endblock %}