Skip to content

Latest commit

 

History

History
49 lines (45 loc) · 1.52 KB

blog.md

File metadata and controls

49 lines (45 loc) · 1.52 KB
layout title permalink
default
Blog
/blog/

PC Engines Blog

{% for post in site.posts %}
{{ post.title }}
{{ post.content | strip_html | truncatewords:20}}
posted on
                    {{ post.date | date: "%A, %B %-d, %Y" }}
                </span>
                <span class="in">
                    in
                </span>
                <span class="categories-on">
                    {% for category in post.categories %}
                    {{category}}&nbsp;{% if forloop.last %}{% else %},{% endif %}
                    {% endfor %}
                </span>
            </div>
            <a class="read-more" href="{{post.url | prepend:site.baseurl }}">read more</a>
        </div>
        {% endfor %}
    </div>
</div>