{{ article.title }}
{% capture author %}{{ article.author }}{% endcapture %} {% capture date %}{% endcapture %} {{ article.author }} @ {{ article.created_at }}{{ article.content }}
{% if blog.comments_enabled? %}
{{ number_of_comments }} comments
{% paginate article.comments by 5 %} {% for comment in article.comments %}{{ comment.content }}
{{ comment.author }} @ {{ comment.created_at }}
{% form 'new_comment', article %}
{{ form.errors | default_errors }}
{% endform %}
{% endif %}