flask/flask_website/templates/snippets/layout.html

12 lines
363 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-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 %}