forked from MartianZ/MartianZ-BLOG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.html
98 lines (82 loc) · 2.91 KB
/
article.html
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{% autoescape None %}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{{ title }} - {{ article["title"] }}</title>
<link rel="stylesheet" href="{{ static_url("style2.css") }}" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Trade+Winds' rel='stylesheet' type='text/css'>
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" />
</head>
<body>
<div id="content">
<header>
<hgroup>
<h1 id="site-title">
<a href="{{ url }}" title="MartianZ">{{ title }}</a>
</h1>
<h2 id="site-description">
Here's my blog :)
</h2>
<h2 class="site-nav">
<a href="{{ url }}">首页</a>
</h2>
<h2 class="site-nav">
<a href="#" onclick="javascript:alert('Under Construction!');">照片墙</a>
</h2>
<h2 class="site-nav">
<a href="https://plus.google.com/100204491389909955903">Google+</a>
</h2>
<h2 class="site-nav">
<a href="https://github.com/MartianZ">GitHub</a>
</h2>
<h2 class="site-nav">
<a href="https://twitter.com/#!/martian_zhu">Twitter</a>
</h2>
</hgroup>
</header>
<div id="main">
<div id="primary">
<article>
<div class="entry-header">
<h1 class="entry-title"><a href="/article/{{ article["name"] }}">{{ article["title"] }}</a></h1>
<div class="entry-meta">
<span class="sep">Posted on <time class="entry-date">{{ article["date"] }}</time></a></span>
</div>
</div>
<div class="entry-content">
{{ (article["content"]) }}
</div>
</article>
<div class="comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'martian-octopress-blog';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div>
</div>
<footer>
<div class="div-footer">
Powered by <a href="https://github.com/MartianZ">MartianZ-BLOG</a>
</div>
</footer>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33535278-2']);
_gaq.push(['_setDomainName', '4321.la']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>