layout | css | icon | title | |
---|---|---|---|---|
page |
|
edit |
Blog |
{% assign blogposts = site.blogposts | sort: 'post_date' | reverse -%}
{% for post in blogposts -%}
{% assign post_url = post.url | replace: "index.html", "" %}
{%- capture post_date -%}
{{- post.post_date | date: "%b =qq= %y" -}}
{%- endcapture -%}
{%- include tools/text_process.md data=post_date -%}
{%- include tools/text_process.md data=post.title -%}
{%- endfor %}
{% include tools/text_process.md data=post.tagline %}
{% if post.categories -%}
{% include tools/category_links.md categories=post.categories %}
{%- endif -%}