hy/site/templates/base.html
Paul R. Tagliamonte 3afdbc5487 Adding in jQuery
2013-03-10 14:14:03 -04:00

19 lines
536 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>
<script src="{{ url_for("static", filename="js/jquery-1.9.1.min.js") }}"
type="text/javascript" ></script>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>