flask/flask_website/templates/snippets/layout.html

12 lines
392 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block head %}
{{ super() }}
2010-05-05 17:26:28 +02:00
<link href="{{ url_for('recent_feed') }}" rel="alternate" title="Recent Flask Snippets" type="application/atom+xml">
<style type=text/css>
2010-05-16 14:33:32 +02:00
h1 { background-image: url({{ url_for('.static', filename='snippets.png') }}); }
</style>
{% endblock %}
{% block body_title %}
<h1><span>Flask Snippets</span></h1>
{% endblock %}