You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

620 B

layout title permalink
collection Blog Blog/

{% assign char-count = 500 %}

{% for post in site.posts %}

{{ post.title }}

{% 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>

{% endfor %}