flask/flask_website/templates/extensions/layout.html

11 lines
277 B
HTML
Raw Normal View History

2010-05-09 14:08:02 +02:00
{% extends "layout.html" %}
{% block head %}
{{ super() }}
<style type=text/css>
2010-05-16 14:33:32 +02:00
h1 { background-image: url({{ url_for('.static', filename='extensions.png') }}); }
2010-05-09 14:08:02 +02:00
</style>
{% endblock %}
{% block body_title %}
<h1><span>Flask Extensions</span></h1>
{% endblock %}