incorporeal-cms/incorporealcms/templates/base.html
Brian S. Stephan 01cd6587e0 add a HTML5 favicon icon
mostly so browsers stop requesting the old ancient path
2020-03-07 17:40:24 -06:00

11 lines
352 B
HTML

<!doctype html>
<title>{{ title }}{% if title %} - {% endif %}incorporeal.org</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="icon" href="{{ url_for('static', filename='img/favicon.png') }}">
<section class="content">
{{ content }}
</section>
<footer>
<i>Last modified: {{ mtime }}</i>
</footer>