drewcassidy.me/Blog.md
drewcassidy 897fb8fd99 Remove filler content
• move Index, Projects, and Blog to markdown instead of html files
• fix small syntax error in post-info.html, goddamn HTML and its silent
error handling 😖
• remove filler content in index, as well as some tags I was using for
testing
2023-04-19 01:16:57 -07:00

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