hy/site/templates/base.html
2013-03-10 13:28:50 -04:00

17 lines
409 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/pygments.css") }}" ></link>
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/hy.css") }}" ></link>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>