flask/templates/snippets/layout.html

12 lines
321 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block head %}
{{ super() }}
<style type=text/css>
h1 { margin: 0 0 30px 0; background: url(/static/snippets.png) no-repeat center; height: 165px; }
h1 span { display: none; }
</style>
{% endblock %}
{% block body_title %}
<h1><span>Flask Snippets</span></h1>
{% endblock %}