hy/site/templates/base.html

17 lines
409 B
HTML
Raw Normal View History

2013-03-10 04:54:29 +01:00
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
2013-03-10 18:02:24 +01:00
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/pygments.css") }}" ></link>
2013-03-10 18:28:50 +01:00
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/hy.css") }}" ></link>
2013-03-10 04:54:29 +01:00
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>