-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
162 lines (116 loc) · 4.22 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!-- == Head Stat == -->
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="{{ charset }}" />
<title>{{ title }}</title>
<link rel="stylesheet" href="{{ template_url }}/style.css">
<!-- Remove this if you don't want Opacity Style -->
<link rel="stylesheet" href="{{ template_url }}/style.opacity.css">
<!-- Set background image URL -->
<style>body { background-image: url("background.png"); };</style>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
</head>
<body>
<div id="page">
<hgroup id="ctn_header">
<div id="title">
<h1 id="site-title"><span><a href="{site_url}}" title="{{ site_description }}" rel="home">{{site_name}}</a></span></h1>
<h2 id="site-description">{{ site_description }}</h2>
</div>
<div id="title_r">
<!-- Edit your SNS link and replace the {{ sns_name }} in this array
["profile","gplus","twitter","fb","weibo","qqw","github","rss","admin"]
(It means [ Prosonal Website, Google+, Twitter, Facebook, Sina Weibo, QQ, Github, RSS Feed, Blog Admin Page]) -->
<a href="/" target="_blank"><button class="tr_profile"></button></a>
<a href="{{ sns_link }}" target="_blank"><button class="tr_{{ sns_name }}"></button></a>
<span id="tr_clear"></span>
<!-- Replace {{ search_method }} to the search form of your blog platform (if have) -->
<form id="tr_s_f" method="get" action="{{ search_method }}">
<input id="tr_search" type="text" name="s" id="s" placeholder="" size="10" />
</form>
</div>
<div class="clearfix"></div>
</hgroup>
<div id="float" >
<!-- Set Logo image URL -->
<a href="{{ site_url }}" title="{{ site_title }}" rel="home"><img id="logo" title="{{ site_title }}" src="logo.png" ></a>
<!-- Copy and add nav item -->
<nav id="nav" role="navigation"><div class="menu-container">
<ul class="menu">
<li class="menu-item"><a href="#">Nav Name</a></li>
</ul>
</div></nav>
<nav id="next" role="sencond_navigation"><div class="menu-container">
<ul class="menu">
<li class="menu-item"><a href="#">Nav Name</a></li>
</ul>
</div></nav>
</div>
<div id="ctn">
<div id="content">
<!-- == Head Stop == -->
<!-- == Contents Start ==
Write the article loop for this part -->
<article class="post">
<hgroup class="post_hctn">
<div class="post_time">
<!-- mm: Month; jj: Day; HH: Hour; ii: Minute -->
<div class="post_t_d">{{ time('mm/jj') }}</div>
<div class="post_t_u">{{ time('HH:ii') }}</div>
</div>
<div class="post_h_l">
<span class="post_ct">{{ category_name }}</span>
<h2 class="post_h"><a href="{{ article_url }}">{{ article_name }}</a></h2>
<div class="post_tag">
<span class="post_c"><a class="wp-postviews">{{ author_name }}</a></span>
<!-- Write the tags loop for this part -->
<a href="{{ tag_url }}" rel="tag">{{ tag_name }}</a>
<span class="post_c"><a href="{{ comments_link }}">{{ comments_number }} Comments </a></span>
</div>
</div>
</hgroup>
<div class="post_t">
{{ article_content }}
<p><a href="{{ article_url }}" class="more-link">Read More →</a></p>
</div>
</article>
<!-- == Contents Stop == -->
<!-- == Page Nav Start == -->
<div id="page_nav">
<span class="page-numbers current">1</span>
<a class="page-numbers" href="http://blog.dimpurr.com/page/2/">2</a>
<a class="page-numbers" href="http://blog.dimpurr.com/page/3/">3</a>
<a class="page-numbers" href="http://blog.dimpurr.com/page/4/">4</a>
<a class="next page-numbers" href="http://blog.dimpurr.com/page/2/">下一页</a>
</div>
</div>
</div>
<!-- == Page Nav Stop == -->
<!-- == Footer Start == -->
<div id="sidebar">
<div class="widget" id="one">
<h2>{{Sidebar Name}}</h2>
<ul>
<li>{{List Item}}</li>
</ul>
</div>
<div class="widget" id="two">
<h2>{{Sidebar Name}}</h2>
<ul>
<li>{{List Item}}</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<footer id="footer" role="contentinfo">
<a href="http://dimpurr.com" title="Dimpurr Cheny">Dimpurr</a>'s
<a href="http://blog.dimpurr.com/clearision" title="ClearisionX">ClearisionX</a><br />
<script src="{{ template_url }}/script.js" type="text/javascript"></script>
</footer>
</div>
</body>
</html>
<!-- == Footer Stop == -->