---
layout: page
refactor: true
panel_includes:
- toc
tail_includes:
- related-posts
- post-nav
- comments
---
{{ site.data.locales[site.lang].post.posted }}
{% include datetime.html date=page.date tooltip=true %}
{% if page.last_modified_at %}
{{ site.data.locales[site.lang].post.updated }}
{% include datetime.html date=page.last_modified_at tooltip=true %}
{% endif %}
{% if page.image %}
{% capture src %}src="{{ page.image.path | default: page.image }}"{% endcapture %}
{% capture class %}class="preview-img{% if page.image.no_bg %}{{ ' no-bg' }}{% endif %}"{% endcapture %}
{% capture alt %}alt="{{ page.image.alt | default: "Preview Image" }}"{% endcapture %}
{% capture lqip %}
{% if page.image.lqip %}
lqip="{{ page.image.lqip }}"
{% endif %}
{% endcapture %}
{%- if page.image.alt -%}
{{ page.image.alt }}
{%- endif -%}
{% endif %}
{% if page.author %}
{% assign authors = page.author %}
{% elsif page.authors %}
{% assign authors = page.authors %}
{% endif %}
{{ site.data.locales[site.lang].post.written_by }}
{% if authors %}
{% for author in authors %}
{{ site.data.authors[author].name }}
{% unless forloop.last %}, {% endunless %}
{% endfor %}
{% else %}
{{ site.social.name }}
{% endif %}
{% if site.google_analytics.pv.proxy_endpoint or site.google_analytics.pv.cache_path %}
{{ site.data.locales[site.lang].post.pageview_measure }}
{% endif %}
{% include read-time.html content=content prompt=true %}
{% if page.categories.size > 0 %}
{% for category in page.categories %}
{{ category }}
{%- unless forloop.last -%}, {%- endunless -%}
{% endfor %}
{% endif %}
{% if page.tags.size > 0 %}
{% endif %}
{% include post-sharing.html %}