{% endif %}
{% comment %}
TAGS - Check to see if the tags_enabled setting in settings.yml data file is toggled.
{% endcomment %}
{% include post-tags.html %}
{% comment %}
COMMENTS - Check to see if comments are toggled for this particular post.
{% endcomment %}
{% include post-comments.html %}
{% include post-sidebar.html %}
{% else %}
{% unless page.image.featured %}
{{page.title }}
{% if page.date %}Posted on {{page.date | date: "%A, %B %-d, %Y"}}{% endif %}
{% if page.categories %}in {{page.categories[0] | capitalize}}{% endif %}
{% if page.author %}
{% assign author = site.authors | where: 'username' , page.author %}
{% assign author = author[0] %}
By
{% if author %}
{{author.name}}
{% else %}
{{page.author}}
{% endif %}
{% endif %}