-
Notifications
You must be signed in to change notification settings - Fork 2
/
blog.html
31 lines (25 loc) · 844 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
---
layout: default
title: Blog
---
<!-- Some good quote about writing -->
<h4><i>Here is me, trying to help myself learn new things and explore new ideas and hoping that others might find it helpful as well.</i></h4>
<!-- <h4> by the way, <a href="blog_personal.html"> I'm not a robot </a></h4> -->
{% assign sorted-tags = site.tags | sort %}
{% for tag in sorted-tags reversed %}
<div style="margin-top: 2em; margin-bottom: 2em"></div>
<!-- <h2>{{ tag[0] }}</h2> -->
<ul>
{% for post in tag[1] %}
{% unless post.category == "personal" %}
<hr>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
{{post.date | date_to_string}} <br>
<div style="margin-bottom: 1em">{{post.category}}</div>
{% if post.ExcerptOut %}
{{ post.excerpt }}
{% endif %}
{% endunless %}
{% endfor %}
</ul>
{% endfor %}