forked from postachio/theme-apex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.html
246 lines (215 loc) · 7.73 KB
/
theme.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" xmlns:og="http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<title>
{% if is_login %}Login
{% elif is_home %}{{ site.author }}
{% elif is_tag %}{{ tag }}
{% elif post %}{{ post.title }}
{% endif %}
| {{ site.name }}
</title>
{{ header_meta }}
<link rel="stylesheet" type="text/css" href="{{ assets('css/style.css') }}">
<!--[if IE 7]>
<link href="http://postach.io/static/themes/_assets/fontawesome/css/font-awesome-ie7.min.css" rel="stylesheet">
<![endif]-->
<!--
<style>
/**
* Your custom override CSS goes here. If you wanted to override the default link colour and hover state, you would do this:
*
* a {
* color: #333; /* Override the default colour with a not-quite-black that is easy on the eyes on white screens */
* }
*
* a:hover {
* color: #545454; /* This will now change the hover state as well */
* }
*
* You can put anything you want to override in here, so be creative!
*/
</style>
-->
{% if site.analytics %}
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ site.analytics }}']);
_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>
{% endif %}
</head>
<body>
{% if is_login %}
{{ login_form }}
{% else %}
<div class="row">
<div class="span4 header">
<div class="bg-img" style="background-image: url('{% if site.cover_photo %}{{ site.cover_photo }}{% else %}{{ assets['background.jpg'] }}{% endif %}');"></div>
<div class="gradient"></div>
<div class="title">
<h1>{{ site.name }}</h1>
<ul class="social">
{% if site.twitter %}
<li>
<a href="{{ site.twitter }}" title="Twitter" target="_blank">
<i class="icon-twitter"></i> Twitter
</a>
</li>
{% endif %}
{% if site.facebook %}
<li>
<a href="{{ site.facebook }}" title="Facebook" target="_blank">
<i class="icon-facebook-sign"></i> Facebook
</a>
</li>
{% endif %}
{% if site.googleplus %}
<li>
<a href="{{ site.googleplus }}?rel=author" title="Google+" target="_blank">
<i class="icon-google-plus"></i> Google+
</a>
</li>
{% endif %}
{% if site.linkedin %}
<li>
<a href="{{ site.linkedin }}" title="LinkedIn" target="_blank">
<i class="icon-linkedin"></i> LinkedIn
</a>
</li>
{% endif %}
<li>
<a href="{{ site.atom_url }}" title="RSS" target="_blank">
<i class="icon-rss"></i> RSS
</a>
</li>
</ul>
</div>
<a class="logo" href="/">
<img class="avatar" src="{{ site.avatar }}" alt="{{ site.author }}" width="100%" height="100%" />
</a>
<div class="site-description">
<ul>
<li><a href="/">Blog</a></li>
{% if pages %}
{% for page in pages %}
<li><a href="{{ page.permalink }}" class="{{ set_active(page.permalink) }}">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</ul>
</div>
</div>
</div>
<div class="row wrapper">
<div class="span4 spacer"></div>
{% if is_home or is_tag %}
<div class="span6 offset1 posts">
{% if is_tag %}
<h4 class="sub-heading span6">Showing all posts tagged {{ tag }}:</h4>
{% endif %}
{% if posts %}
{% for post in posts %}
<div class="post span6">
<div class="row">
<div class="span6">
<h2><a href="{{ post.permalink }}">{{ post.title }}</a></h2>
</div>
</div>
<div class="post-body" data-type-cleanup="true">
{{ post.content }}
</div>
<div class="post-info">
<div class="info-left">
<p class="date">{{ post.created_at|format_date }}</p>
</div>
<div class="info-right">
<p class="read-more"><a href="{{ post.permalink }}">Read More »</a></p>
</div>
</div>
</div>
{% endfor %}
{% if not is_tag %}
<div class="pagination span6">
{% if pagination.prev %}<a href="{{ pagination.prev }}" class="post-prev">← View Previous Posts</a>{% endif %}
{% if pagination.next %}<a href="{{ pagination.next }}" class="post-next">View More Posts →</a>{% endif %}
</div>
{% endif %}
{% else %}
<h4 class="sub-heading span6">No Posts Yet :(</h4>
{% endif %}
</div>
{% elif post %}
<div class="span6 offset1 posts">
<div class="post whole span6">
<h1>{{ post.title }}</h1>
<div class="post-info">
<div class="info-left">
<p class="date">{{ post.created_at|format_date }}</p>
</div>
<div class="info-right">
<p class="comments">
<a href="/"><i class="icon-comment"></i> 0</a>
</p>
</div>
</div>
<div class="post-body">
<div class="post-content" data-type-cleanup="true">
{{ post.content }}
</div>
{% if post.type == 'link' %}
<p><a href="{{ post.url }}"><i class="icon-share"></i> {{ post.url }}</a></p>
{% endif %}
{{ theme.social.bar }}
{% if post.tags %}
<ul class="post-tags">
{% for tag in post.tags %}
<li><a href="/tag/{{ tag }}">{{ tag|format_tag(link=False, humanize=True) }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
<div class="post-footer">
<p class="back"><a href="/">« Go Back</a></p>
</div>
{% if site.disqus %}
<div class="post-comments">
<div id="disqus_thread"></div>
<script>
var disqus_shortname = '{{ site.disqus }}';
var disqus_url = '{{site.base_url}}{{ post.permalink }}';
(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>
{% endif %}
</div>
</div>
{% elif post.type == 'page' %}
<div class="span6 offset1 posts">
<div class="post whole span6">
<h1>{{ page.title }}</h1>
<div class="post-body" data-type-cleanup="true">
{{ page.content }}
</div>
<div class="post-footer">
<p class="back"><a href="/">« Go Back</a></p>
</div>
</div>
</div>
{% endif %}
</div>
{% endif %}
{{ footer_meta }}
<!-- bootstrap -->
<script src="http://postach.io/static/themes/_assets/bootstrap/js/bootstrap.min.js" /></script>
</body>
</html>