-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
214 lines (194 loc) · 6.47 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
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
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title></title>
<link rel=stylesheet/less href=less/style.less>
<script>less = { env: 'production' }</script>
<script defer src=https://cdnjs.cloudflare.com/ajax/libs/less.js/2.4.0/less.min.js></script>
<script defer src=https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js></script>
<script defer src=js/prefixfree.dynamic-dom.min.js></script>
</head>
<body class=☠>
<script type=text/x-handlebars>
<header class=page-header>
<h1>{{#link-to 'index'}}{{blogTitle}}{{/link-to}}</h1>
<nav class=page-nav>
<ul>
{{#if blog.isNsfw}}<li>{{i18n 'nsfw'}}</li>{{/if}}
{{#if blog.ask}}<li><a href="{{ askHref }}">{{blog.askPageTitle}}</a></li>{{/if}}
{{#if blog.url}}<li><a href="{{ blog.url }}">{{i18n 'onTumblr'}}</a></li>{{/if}}
{{#if followHref}}<li><a href="{{ followHref }}">{{i18n 'follow'}}</a></li>{{/if}}
</ul>
</nav>
</header>
<main class=page-body>
{{outlet}}
</main>
<footer class=page-footer>
<nav class=page-nav>
<ul>
{{#if blog.isNsfw}}<li>{{i18n 'nsfw'}}</li>{{/if}}
{{#if blog.ask}}<li><a href="{{ askHref }}">{{blog.askPageTitle}}</a></li>{{/if}}
{{#if blog.url}}<li><a href="{{ blog.url }}">{{i18n 'onTumblr'}}</a></li>{{/if}}
{{#if followHref}}<li><a href="{{ followHref }}">{{i18n 'follow'}}</a></li>{{/if}}
</ul>
</nav>
</footer>
</script>
<script data-template-name=page type=text/x-handlebars>
<div class=posts>
{{#each this}}{{view App.SinglePostView post=this}}{{/each}}
</div>
<footer class=sub-footer>
<nav class=pagnation>
<ul>
{{#unless isFirstPage}}<li class=previous-page><a href="{{ previousPageHref }}">{{i18n 'previousPage'}}</a></li>{{/unless}}
<li class=current-page>{{i18n 'currentPage' page numPages argument0='page' argument1='numPages'}}</li>
{{#unless isLastPage}}<li class=next-page><a href="{{ nextPageHref }}">{{i18n 'nextPage'}}</a></li>{{/unless}}
</ul>
</nav>
</footer>
</script>
<script data-template-name=tag type=text/x-handlebars>
<header class=sub-header>
<h2 class=tag>{{tag}}</h2>
</header>
<div class=posts>
{{#each this}}{{view App.SinglePostView post=this}}{{/each}}
</div>
</script>
<script data-template-name=type type=text/x-handlebars>
<header class=sub-header>
<h2 class=type>{{i18n 'postType.other' type argument0='type'}}</h2>
</header>
<div class=posts>
{{#each this}}{{view App.SinglePostView post=this}}{{/each}}
</div>
</script>
<script data-template-name=post type=text/x-handlebars>
<div class=posts>
{{view App.SinglePostView post=this}}
</div>
</script>
<script data-template-name=post-view type=text/x-handlebars>
{{#with view.post}}
{{#if view.isText}}
<header class=post-header>
<h2 class=title>{{#link-to 'post' this}}{{title}}{{/link-to}}</h2>
</header>
<div class=post-body>
{{{body}}}
</div>
{{/if}}
{{#if view.isPhoto}}
<div class=post-body>
{{#link-to 'post' this}}
{{#if view.image.nullWidth}}
<img src="{{ view.image.url }}" alt="{{ caption }}">
{{else}}
<img src="{{ view.image.url }}" width="{{ view.image.width }}" height="{{ view.image.height }}" alt="{{ caption }}">
{{/if}}
{{/link-to}}
<div class=caption>
{{{caption}}}
</div>
</div>
{{/if}}
{{#if view.isPhotoSet}}
<div class=post-body>
{{#each view.images}}
{{!#link-to 'post' view.post}}
<a href="{{ url }}">
{{#if nullWidth}}
<img src="{{ url }}" title="{{ caption }}" alt="{{ caption }}">
{{else}}
<img src="{{ url }}" width="{{ width }}" height="{{ height }}" title="{{ caption }}" alt="{{ caption }}">
{{/if}}
</a>
{{!/link-to}}
{{/each}}
</div>
{{/if}}
{{#if view.isQuote}}
<div class=post-body>
<blockquote>{{{text}}}</blockquote>
{{#if source}}<p class=source>{{{source}}}</p>{{/if}}
</div>
{{/if}}
{{#if view.isLink}}
<header class=post-header>
<h2 class=link><a href="{{ url }}">{{title}}</a></h2>
</header>
<div class=post-body>
{{{description}}}
</div>
{{/if}}
{{#if view.isChat}}
{{#if title}}
<header class=post-header>
<h2 class=title>{{title}}</h2>
</header>
{{/if}}
<ul class="post-body dialogue">
{{#each dialogue}}
<li>
{{#if label}}<span class=chat-label>{{label}}</span>{{/if}}
<q class=phrase>{{phrase}}</q>
</li>
{{/each}}
</ul>
{{/if}}
{{#if view.isAudio}}
<div class=post-body>
{{{player}}}
<div class=caption>
{{{caption}}}
</div>
</div>
{{/if}}
{{#if view.isVideo}}
<div class=post-body>
{{{player.lastObject.embed_code}}}
<div class=caption>
{{{caption}}}
</div>
</div>
{{/if}}
{{#if view.isAnswer}}
<header class=post-header>
<h2>{{#if askingUrl}}<a href="{{ askingUrl }}">{{askingName}}</a>{{else}}{{askingName}}{{/if}} {{i18n 'asked'}}: <q>{{question}}</q></h2>
</header>
<div class=post-body>
{{{answer}}}
</div>
{{/if}}
<footer class=post-footer>
<ul>
<li class=timestamp>{{#link-to 'post' this}}{{view.fromTime}}{{/link-to}}</li>
<li class=notes>{{i18n 'noteCount' noteCount argument0='count'}}</li>
<li class=type>{{#link-to 'type' type}}{{i18n 'postType.one' type argument0='type'}}{{/link-to}}</li>
{{#if rebloggedFromUrl}}<li class=rebloged-from>{{i18n 'rebloggedFrom'}} <a href="{{ rebloggedFromUrl }}">{{rebloggedFromName}}</a></li>{{/if}}
{{#if sourceUrl}}<li class=source>{{i18n 'source'}} <a href="{{ sourceUrl }}">{{sourceTitle}}</a></li>{{/if}}
{{#if tags.length}}
<li class=tags>
<ul>
{{#each tags}}<li>{{#link-to 'tag' this}}{{this}}{{/link-to}}</li>{{/each}}
</ul>
</li>
{{/if}}
<li class=on-tumblr><a href="{{ postUrl }}">{{i18n 'onTumblr'}}</a></li>
<li class=reblog><a href="{{ view.reblogHref }}">{{i18n 'reblog'}}</a></li>
</ul>
</footer>
{{/with}}
</script>
<script defer src=https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js></script>
<script defer src=js/ember-template-compiler.js></script>
<script defer src=https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.11.0/ember.min.js></script>
<script defer src=https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/1.0.0-beta.16.1/ember-data.min.js></script>
<script defer src=https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js></script>
<script defer src=js/i18n.js></script>
<script defer src=js/application.js></script>
</body>
</html>