forked from belen-albeza/komik-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrip-navigation.hbs
22 lines (18 loc) · 981 Bytes
/
strip-navigation.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<nav class="strip-navigation"><ul>
{{! first strip }}
{{#get "posts" limit="1" order="published_at asc"}}{{#foreach posts}}<li><a href="{{url}}">
<img src="{{asset 'images/open-iconic/media-step-backward.svg'}}" alt="First" width="32">
</a></li>{{/foreach}}{{/get}}
{{! previous and next }}
{{#prev_post}}<li><a href="{{url}}">
<img src="{{asset 'images/open-iconic/media-skip-backward.svg'}}" alt="Previous" width="32">
</a></li>{{/prev_post}}
<li><a href="{{url}}" class="permalink">Permalink</a></li>
{{#next_post}}<li><a href="{{url}}">
<img src="{{asset 'images/open-iconic/media-skip-forward.svg'}}" alt="Next" width="32">
</a></li>{{/next_post}}
{{! latest strip}}
{{#get "posts" limit="1" order="published_at desc"}}{{#foreach posts}}<li><a href="{{url}}">
<img src="{{asset 'images/open-iconic/media-step-forward.svg'}}" alt="Latest" width="32">
</a></li>{{/foreach}}{{/get}}
</ul></nav>