-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
28 lines (27 loc) · 859 Bytes
/
blog.html
File metadata and controls
28 lines (27 loc) · 859 Bytes
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
---
layout: blog-archive
title: Blog
math: true
code: true
---
{% for post in site.posts %}
<div class="article">
<div class="article-metadata">
{% include article-metadata.html article=post %}
</div>
<div class="article-content">
{{ post.excerpt }}
</div>
<p><a href="{{ site.relative }}{{ post.url }}">Read more »</a></p>
</div>
{% endfor %}
<!--
<div class="pagination-indicators">
{% if paginator.previous_page %}
<a href="{{ site.relative }}/blog/page{{ paginator.previous_page }}">« Previous</a>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ site.relative }}/blog/page{{ paginator.next_page }}">Next »</a>
{% endif %}
</div>-->