{% extends "base.html" %} {% block title %}{{ post.title }} - {{ APP_NAME }}{% endblock %} {% block content %}
{{ post.platform.title()[:1] }}
{% if post.url and not post.url.startswith('/') %}

{{ post.title }}

{% else %}

{{ post.title }}

{% endif %} {% if post.content %}
{{ post.content | safe | nl2br }}
{% endif %} {% if post.url and not post.url.startswith('/') %} {% endif %}

Comments ({{ comments|length }})

{% macro render_comment(comment, depth=0) %}
{{ comment.author }} {{ moment(comment.timestamp).fromNow() if moment else 'Recently' }}
{{ comment.content | safe | nl2br }}
{% if comment.replies %}
{% for reply in comment.replies %} {{ render_comment(reply, depth + 1) }} {% endfor %}
{% endif %}
{% endmacro %} {% if comments %}
{% for comment in comments %} {{ render_comment(comment) }} {% endfor %}
{% else %}

No comments yet. Be the first to share your thoughts!

{% endif %}
{% endblock %}