24 lines
654 B
HTML
24 lines
654 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>
|
|
|
|
<script src="{{ url_for("static", filename="js/main.js") }}"
|
|
type="text/javascript" ></script>
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|