-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.29 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
---
layout: default
---
<section class="posts">
{% for post in paginator.posts %}
<h2 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
<div class="post-meta">Posted on
<a href="{{ post.url }}">
<time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%b %d, %Y" }}</time>
</a> by
<a href="#">
Blogger
</a> —
<a href="{{ post.url }}/#">
No Comments ⬇
</a>
</div>
<div class="post-content"><p style="margin-bottom: 1rem;"> {{ post.excerpt }} </p> <div style="clear: both;font-weight: 700;"><a href="{{ post.url }}">Read more > </a></div></div>
<p style="margin-bottom: 1rem;" ></p>
{% endfor %}
<nav class="navigation">
<div class="previous">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}">‹ Previous</a>
{% endif %}
</div>
<span class="page_number ">
Page: {{ paginator.page }} of {{ paginator.total_pages }}
</span>
<div class="next">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}">Next ›</a>
{% endif %}
</div>
</nav>
</section>
<aside class="">
{% include archive-sidebar.html %}
{% include tag-cloud-sidebar.html %}
{% include blog-partners-sidebar.html %}
</aside>