{% extends "layouts" ~ DIR ~ "default.twig" %} {% block content %} {% include(["feathers" ~ DIR ~ post.feather ~ ".twig", "feathers" ~ DIR ~ "missing.twig"]) %} {% if module_enabled("pingable") and post.pingback_count > 0 %}

{{ "Webmentions" | translate }}

    {% for pingback in post.pingbacks %}
  1. {{ pingback.title | oneof("[Untitled]" | translate) }}
  2. {% endfor %}
{% endif %} {% if module_enabled("comments") and (post.comment_count > 0 or post.commentable) %}

{{ "Comments" | translate }}

    {% for comment in post.comments %} {% include "content" ~ DIR ~ "comment.twig" %} {% endfor %}
  1. {# Needed for AJAX commenting. #} {% if post.commentable %}
  2. {% include "forms" ~ DIR ~ "comment" ~ DIR ~ "new.twig" %}
  3. {% endif %}
{% endif %} {% endblock %}