{% if include.author %} {% assign member = site.members | where_exp: "member", "member.slug == include.author" | first %} {% if member %} {% include portrait.html lookup=include.author style="tiny" %} {% else %} {% include icon.html icon="fa-solid fa-feather-pointed" %} {{ include.author }} {% endif %} {% endif %} {% assign published = include.published | date: "%B %d, %Y" %} {% assign updated = include.updated | date: "%B %d, %Y" %} {% if published %} {% include icon.html icon="fa-regular fa-calendar" %} {{ published }} {% endif %} {% if updated and updated != "" and updated != published %} {% include icon.html icon="fa-solid fa-clock-rotate-left" %} {{ updated }} {% endif %}
{% if include.tags %} {% include tags.html tags=include.tags link="blog" %} {% endif %}