-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
executable file
·49 lines (42 loc) · 1.95 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
---
layout: default
---
{% include index_header.html %}
<div role="main" class="posts">
{% for post in paginator.posts %}
{% include post_index.html %}
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<nav class="pagination container">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">«</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<em>{{ page }}</em>
{% elsif page == 1 %}
<a href="{{ site.baseurl }}/">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">»</a>
{% endif %}
</nav>
{% endif %}
<footer class="index-footer container">
<nav class="footer-links">
<a href="https://github.com/recurss/recurss.github.io#about">About</a>
<a href="https://github.com/recurss/recurss.github.io#submitting">Submit</a>
<a href="/atom.xml">Atom Feed</a>
</nav>
<div class="footer-post">
<p>
<a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/80x15.png" />
</a><br> Unless otherwise noted, all content is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a><br>
</p>
<p id="copyright">Site © 2018 <a href="https://mattbierner.com">Matt Bierner</a><br/>Specimens © original authors</p>
</div>
</footer>