{% set page_title = post.title + ' - HereSay LIVE Blog' %} {% set page_description = post.excerpt %} {% set page_type = 'article' %} {% set page_keywords = post.tags if post.tags else ['heresay', 'voice chat', 'anonymous', 'blog'] %} {% set article_author = post.author %} {% set article_published = post.date + 'T00:00:00Z' if post.date else none %} {% set article_modified = post.lastUpdated + 'T00:00:00Z' if post.lastUpdated else article_published %} {% set article_section = post.section or 'Connection & Loneliness' %} {% set article_tags = post.tags %} {% set reading_time = ((post.content | length) / 1000) | round | int %} {% if reading_time < 1 %}{% set reading_time = 1 %}{% endif %} {%- include 'components/head.html' with context -%} {%- include 'components/header.html' with context -%}

{{ post.title }}

{{ post.date }} by {{ post.author }} {{ reading_time }} min read
{% if post.tags %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endif %}
{{ post.content | markdown | safe }}