-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 931 Bytes
/
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
---
title: Blog
layout: default
---
<a style="width:100%;margin-bottom:3rem;padding-right: initial;padding-left: 0px;text-align:center;" id="s-tag-button" href="/tags">SHOW ALL TAGS</a>
<div>
<ul>
{% for post in site.categories.blog %}
<li class='post-list'>
<a class="title" href="{{ post.url }}">{{ post.title }}</a><br>
{{ post.date | date: "%b %-d, %Y" }}<br>
<section style="margin-bottom:10px" >
{% for tag in post.tags %}
<a class="tags" style="margin-top:0.3em" href="/tag/{{ tag }}">{{ tag }}</a>
{% endfor %}
</section>
<section class="post-excerpt" >
{{ post.excerpt | markdownify | remove: '<p>' | remove: '</p>' }} <span style="color:#ccc;">. . .</span>
<a class="readmore" href="{{ post.url }}"> read more <i class="fa fa-caret-square-o-right"></i></a><br>
</section>
</li>
<br>
{% endfor %}
</ul>
</div>