-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
37 lines (32 loc) · 866 Bytes
/
blog.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
---
layout: default
title: Blog
---
<!-- ============ Blog Tags ========= -->
<!-- <div class="docs-section" id="blog"> -->
<h4>Writing</h4>
<p>
I'm writing here! They're sorted by tags and by general archive.
</p>
By tags:
{% for tag in site.tags %}
<h5>{{ tag[0] }}</h5>
<ul>
{% for post in tag[1] %}
<li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<p>{{ post.excerpt }}</p>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</li>
{% endfor %}
</ul>
{% endfor %}
Chronological Archive:
<ul>
{% for post in site.posts %}
<li>
<h5><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h5>
<p>{{ post.excerpt }}</p>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</li>
{% endfor %}
</ul>