-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
54 lines (53 loc) · 2.3 KB
/
Copy pathtemplate.html
File metadata and controls
54 lines (53 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>{%title%} | Blog</title>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html;"><meta name=viewport content="initial-scale=1.0 maximum-scale=1.0">
{%meta%}
<link href='https://fonts.googleapis.com/css?family=Chivo+Mono' rel='stylesheet' type='text/css'>
<link href="./css/night-theme.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="../css/highlight/tomorrow-night.css">
<link rel="stylesheet" href="../css/fontello.css">
<script src="../js/highlight.pack.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
</head>
<body>
<div class="header">
<a href="/"><i class="icon icon-emo-coffee"></i> Blog</a>
</div>
<div class="container">
<div class="main">
{%content%}
</div>
</div>
<div class="footer">
<p>Created with <a href="http://github.com/huytd/azeroth-js">azeroth.js</a></p>
<div class="social">
<a href="#"><i class="icon-facebook-squared"></i></a>
<a href="#"><i class="icon-twitter-squared"></i></a>
<a href="#"><i class="icon-linkedin-squared"></i></a>
<a href="#"><i class="icon-github-squared"></i></a>
<a href="#"><i class="icon-mail-alt"></i></a>
</div>
</div>
<script type="text/javascript" async src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
skipTags: ["script","noscript","style","textarea"]
}
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'Insert-Your-GA-ID-Here', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>