hy/site/templates/base.html

24 lines
654 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 20:20:27 +01:00
2013-03-10 18:28:50 +01:00
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/hy.css") }}" ></link>
2013-03-10 20:17:16 +01:00
2013-03-10 19:14:03 +01:00
<script src="{{ url_for("static", filename="js/jquery-1.9.1.min.js") }}"
type="text/javascript" ></script>
2013-03-10 20:20:27 +01:00
2013-03-10 20:17:16 +01:00
<script src="{{ url_for("static", filename="js/main.js") }}"
type="text/javascript" ></script>
2013-03-10 04:54:29 +01:00
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>