summaryrefslogtreecommitdiffstats
path: root/_base.html
diff options
context:
space:
mode:
Diffstat (limited to '_base.html')
-rw-r--r--_base.html19
1 files changed, 4 insertions, 15 deletions
diff --git a/_base.html b/_base.html
index 4aae176..997a544 100644
--- a/_base.html
+++ b/_base.html
@@ -4,10 +4,10 @@
<meta charset="utf-8" />
<meta name="author" content="{{ author }}" />
<title>{{ site.title }}{% block title %}: {{ entry.title }}{% endblock %}</title>
- <link rel="stylesheet" href="http://960.gs/css/reset.css" />
- <link rel="stylesheet" href="http://960.gs/css/text.css" />
- <link rel="stylesheet" href="http://960.gs/css/960.css" />
- <link rel="stylesheet" href="{{ url_for("static/css/prettify.css") }}" type="text/css" />
+ <link rel="stylesheet" href="{{ url_for("static/css/reset.css") }}" type="text/css" />
+ <link rel="stylesheet" href="{{ url_for("static/css/text.css") }}" type="text/css" />
+ <link rel="stylesheet" href="{{ url_for("static/css/960.css") }}" type="text/css" />
+ <link rel="stylesheet" href="{{ url_for("static/css/syntax.css") }}" type="text/css" />
<link rel="stylesheet" href="{{ url_for("static/css/main.css") }}" type="text/css" />
</head>
<body onload="highlight()">
@@ -46,14 +46,3 @@
</div>
</body>
</html>
-
-<script type="text/javascript" src="{{url_for("static/js/google-code-prettify/prettify.js")}}"></script>
-<script type="text/javascript">
-var highlight = function() {
- elements = document.getElementsByTagName('pre');
- for(var i=0; i< elements.length; ++i) {
- elements[i].className = 'prettyprint';
- }
- prettyPrint();
-};
-</script>