drewcassidy.me/Blog.html

29 lines
683 B
HTML
Raw Normal View History

---
layout: collection
title: Blog
permalink: Blog/
---
{% assign char-count = 500 %}
{% for post in site.posts %}
<article class="post-entry">
2017-12-24 23:04:19 +00:00
<h2 class="post-title">
<a href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
2017-12-24 23:04:19 +00:00
</a>
</h2>
2017-12-24 23:04:19 +00:00
{% include post-info.html tags = post.tags date=post.date%}
<div class="post-excerpt">
{{post.content | markdownify | strip_html | truncate: char-count}}
<a class="post-see-more" href="{{ post.url | prepend: site.baseurl }}">
<i>See&nbsp;More</i>
</a>
</div>
</article>
2017-12-24 23:04:19 +00:00
<br>
{% endfor %}