hy/site/templates/base.html

24 lines
654 B
HTML
Raw Normal View History

2013-03-09 22:54:29 -05:00
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
2013-03-10 13:02:24 -04:00
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/pygments.css") }}" ></link>
2013-03-10 15:20:27 -04:00
2013-03-10 13:28:50 -04:00
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/hy.css") }}" ></link>
2013-03-10 15:17:16 -04:00
2013-03-10 14:14:03 -04:00
<script src="{{ url_for("static", filename="js/jquery-1.9.1.min.js") }}"
type="text/javascript" ></script>
2013-03-10 15:20:27 -04:00
2013-03-10 15:17:16 -04:00
<script src="{{ url_for("static", filename="js/main.js") }}"
type="text/javascript" ></script>
2013-03-09 22:54:29 -05:00
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>