fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/themes/bootflat/templates/_layout.html

25 lines
652 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2014-03-19 10:55:34 +00:00
<link rel="stylesheet" href="/static/css/style.css" />
{% block extra_css %}{% endblock %}
<title>{% block page_title %}Shelfzilla{% endblock %}</title>
</head>
<body>
2014-03-19 10:55:34 +00:00
{% block messages %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}
2014-03-19 10:55:34 +00:00
{% block main_content %}{% endblock %}
{% block extra_js %}{% endblock %}
2014-03-19 10:55:34 +00:00
<script src="/static/js/site.js"></script>
</body>
</html>