-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrants.html
More file actions
20 lines (16 loc) · 739 Bytes
/
rants.html
File metadata and controls
20 lines (16 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: default
---
<p class="subhead">Abandon all hope, ye who enter here. Seriously though, the view expressed in these posts should only be taken at face value if you agree with them completely. If not then I was joking, hahaha. I am funny.</p>
<div class="posts">
{% for post in site.tags.rant limit:10 %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<aside class="author-info">Written on {{ post.date | date: "%B %e, %Y" }}</aside>
<div class="entry">
{{ post.content | truncatewords:40}}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More about {{ post.title }}</a>
</article>
{% endfor %}
</div>