-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
81 lines (75 loc) · 2.37 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
---
layout: default
title: THEY'RE DELICIOUS!
---
<ul id="posts">
{% for post in paginator.posts %}
<li class="post">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="gif">
<a href="{{ post.url }}"><img src='/images/{{ post.image }}' alt='{{ post.title }}' /></a>
</div>
<div class="fb-like" data-href="http://animatedpizzagifs.com{{ post.url}}" data-send="true" data-width="620" data-show-faces="false" data-font="arial"></div>
{% if post.content %}
<div class="content">
{{ post.content }}
</div>
{% endif %}
<div class="credit">
{% if post.credit_name != null and post.credit_url != null %}
<strong>Credit:</strong> <a href="{{ post.credit_url }}">{{ post.credit_name }}</a>
{% elsif post.credit_name and post.credit_url == null %}
<strong>Credit:</strong> {{ post.credit_name }}
{% elsif post.credit_name == null and post.credit_url != null %}
<strong>Credit:</strong> <a href="{{ post.credit_url }}">{{ post.credit_url }}</a>
{% else %}
<strong>Credit:</strong> No idea, <a href="mailto:[email protected]?subject=credit+this+gif+you+jerk">email me!</a>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
{% if paginator.total_pages > 1 %}
<div id="post-pagination" class="pagination">
<ul class="pages">
{% if paginator.previous_page %}
<li class="page previous">
{% if paginator.previous_page == 1 %}
<a href="/">Previous</a>
{% else %}
<a href="/page{{paginator.previous_page}}">Previous</a>
{% endif %}
</li>
{% else %}
<li class="page previous disabled">
<span>Previous</span>
</li>
{% endif %}
<li class="page">
{% if paginator.page == 1 %}
<span class="current-page">1</span>
{% else %}
<a href="/">1</a>
{% endif %}
</li>
{% for count in (2..paginator.total_pages) %}
<li class="page">
{% if count == paginator.page %}
<span class="current-page">{{count}}</span>
{% else %}
<a href="/page{{count}}">{{count}}</a>
{% endif %}
</li>
{% endfor %}
{% if paginator.next_page %}
<li class="page next">
<a href="/page{{paginator.next_page}}">Next</a>
</li>
{% else %}
<li class="page next disabled">
<span>Next</span>
</li>
{% endif %}
</ul>
</div>
{% endif %}