{{ blog.name }}

{{ blog.tagline }}

{{ article.title }}

{% if article.featured_image %} {{ article.title }} {% endif %}
{% for block in article.content_blocks %} {% if block.type == 'paragraph' %}

{{ block.text }}

{% elif block.type == 'heading' %}

{{ block.text }}

{% elif block.type == 'blockquote' %}
{{ block.text }}
{% elif block.type == 'code' %}
{{ block.code }}
{% elif block.type == 'image' %} {{ block.caption }} {% if block.caption %}

{{ block.caption }}

{% endif %} {% elif block.type == 'list' %}
    {% for item in block.list_items %}
  • {{ item }}
  • {% endfor %}
{% endif %} {% endfor %}
{% for tag in article.tags %} #{{ tag }} {% endfor %}
{{ article.author.name }}

{{ article.author.name }}

{{ article.author.bio }}

{% for social in article.author.social_links %} {{ social.platform }} {% endfor %}

Comments ({{ comments | length }})

{% for comment in comments %}
{{ comment.author }} {{ comment.created_at }}

{{ comment.text }}

{% if comment.replies %}
{% for reply in comment.replies %}
{{ reply.author }} {{ reply.created_at }}

{{ reply.text }}

{% endfor %}
{% endif %}
{% endfor %}