--- layout: page title: Blog permalink: /blog/ description: Blog Posts weight: 99 --- {% if site.blog.enabled == true %}
{% for post in site.posts %} {% if post.author %} {% assign blog_author = post.author %} {% elsif site.author.name %} {% assign blog_author = site.author.name %} {% endif %} {% if post.site %} {% assign author_site = post.site %} {% elsif site.author.site %} {% assign author_site = site.author.site %} {% else %} {% assign author_site = blog_author | prepend: '{{ site.blog.prepend }}' %} {% endif %}

{{ post.excerpt | markdownify }}


{{ post.date | date: '%B %d, %Y @ %H:%M' }}
{% endfor %}
{% endif %}