11 lines
352 B
HTML
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>
|