-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (49 loc) · 1.41 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
---
layout: default
title: Enrico Campidoglio
---
<div id="home">
{% for post in paginator.posts %}
<p class="meta">
<span id="meta-date">{{ post.date | date: "%B %d, %Y" }}</span>
<span id="meta-categories">
Posted in
{% for category in post.categories %}
<a href="/tag/{{ category | replace:'.','dot' }}">{{ category }}</a>
{% if forloop.last == false %}
|
{% endif %}
{% endfor %}
</span>
</p>
<a href="{{ post.url }}" class="pagination-title">
<h1 class="title">{{ post.title }}</h1>
</a>
<div id="summary">
{{ post.summary }}
</div>
<div id="post">
{{ post.content }}
</div>
<div class="comments">
<i class="fa fa-comment"></i>
<a href="{{ site.url }}{{ post.url }}#disqus_thread"
data-disqus-identifier="{{ post.url }}"></a>
</div>
{% if forloop.last == false %}
<hr />
{% endif %}
{% endfor %}
<div class="pagination">
{% if paginator.next_page %}
<a href="/blog/page{{ paginator.next_page }}" class="previous-page">« Older Posts</a>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/" class="next-page">Newer Posts »</a>
{% else %}
<a href="/blog/page{{ paginator.previous_page }}" class="next-page">Newer Posts »</a>
{% endif %}
{% endif %}
</div>
</div>