-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (48 loc) · 1.62 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
---
layout: default
---
<div class="home">
<div class="contentMain">
<div class="contentBody">
<ul class="post-list">
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
<li>
<paper-card heading="{{ post.title }}" elevation="2" style="width:100%;">
<div class="card-content">
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">read more...</a></span>
{{ post.excerpt }}
</div>
<paper-card>
</li>
{% endfor %}
</ul>
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="previous">Previous</a>
{% else %}
<span class="previous">Previous</span>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="next">Next</a>
{% else %}
<span class="next ">Next</span>
{% endif %}
</div>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>
<div class="sideList">
<h1 class="page-heading"><a href="{{ site.baseurl }}/">Posts</a></h1>
<ul class="post-idx-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b, %Y" }}</span>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>