--- layout: default data-controller: blog ---
{% if page.image %}
{{ page.title }}
{% if page.tags.size > 0 %}
{% for tag in page.tags %} {{ tag }} {% endfor %}
{% endif %}

{{ page.title }}

{% if page.date %}
{% if page.author %} {{ page.author }} {% endif %} {% if page.reading_time %} {{ page.reading_time }} min read {% endif %}
{% endif %}
{% else %}

{{ page.title }}

{% if page.date %}
{% if page.author %} {{ page.author }} {% endif %} {% if page.reading_time %} {{ page.reading_time }} min read {% endif %}
{% endif %} {% if page.tags.size > 0 %}
{% for tag in page.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endif %}
{{ content }}
{% if page.layout == 'post' %}
{% if page.previous.url %}
Previous Article
{{ page.previous.title }}
{% endif %}
{% if page.next.url %}
Next Article
{{ page.next.title }}
{% endif %}
{{ page.author }}

About {{ page.author }}

{{ page.author_bio | default: "Creator and maintainer of PHPFlasher, passionate about building elegant and user-friendly PHP libraries." }}

{% if site.related_posts.size > 0 %}

Related Articles

{% endif %} {% endif %}