-
Notifications
You must be signed in to change notification settings - Fork 6
/
strip.handlebars
34 lines (25 loc) · 1.19 KB
/
strip.handlebars
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
<div id="page">
<div id="comic" class="strip">
<img src="{{ comic.url }}" alt="{{ comic.time }}" />
</div><!--#comic.strip-->
<div class="strip-info">
<!-- Strip label goes here. Time otherwise. -->
<span class="label">{{ xmlDate comic.time }}</span>
<a href="#vote" data-id="{{ comic.time }}" class="vote" title="(F)av & RT*"><i class="icon-star"></i><span class="number-of-votes">{{ comic.votes }}</span></a>
</div><!--.strip-info-->
</div><!--#page-->
<div id="nav" class="strip bottom">
<div class="pn">
{{#if comic.prev}}
<a href="{{ comicUrl comic.prev }}" alt="Prev" id="prev" class="nav-prev" title="Previous Strip (←)"><i class="icon-left-open icon"></i></a>
{{/if}}
</div><!--.pn-->
<a href="/archive/" class="strip-archive" title="Strip Archive (a)">archive</a>
<a href="/top/" alt="!suck" class="top-strips" title="!suck (t)">!suck</a>
<a href="/random/" alt="random strip" class="random" title="Random Strip (r)">.ayp me</a>
<div class="pn">
{{#if comic.next}}
<a href="{{ comicUrl comic.next }}" alt="Next" id="next" class="nav-next" title="Next Strip (→)"><i class="icon-right-open icon"></i></a>
{{/if}}
</div><!--.pn-->
</div><!--#nav.strip-->