shooflenet/articles/article.template.html

20 lines
657 B
HTML
Raw Normal View History

<!doctype html>
2024-09-10 14:08:09 -04:00
<!-- see generate.ignore.py for how this is used with .article.html files! -->
<html>
<head>
{% block head %}
<meta charset="utf-8">
2013-08-04 13:01:01 -04:00
<title>{% block title %}Writings by Shoofle{% endblock %}</title>
<script src="/static/jquery.min.js" type="text/javascript"></script>
<link href="/static/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="/static/bootstrap/css/bootstrap-responsive.css" rel="stylesheet" type="text/css">
<link href="/static/shoofle.css" rel="stylesheet" type="text/css">
{% endblock %}
</head>
<body>
{% block body -%}
2013-08-08 08:47:03 -04:00
{%- include target -%}
{%- endblock %}
</body>
</html>