single.twig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. <div class="content-wrapper">
  4. <article class="post-type-{{ post.post_type }}" id="post-{{ post.ID }}">
  5. <img src="{{ post.thumbnail.src|resize(1200, 300) }}">
  6. <section class="article-content">
  7. <h1 class="article-h1">{{ post.title }}</h1>
  8. <a href="{{ post.link }}">{{ _e('edit') }}</a>
  9. <p class="blog-author">
  10. <span>By</span><a href="{{post.author.path}}"> {{ post.author.name }} </a><span>&bull;</span> <time datetime="{{ post.date|date('Y-m-d H:i:s') }}">{{ post.date }}</time>
  11. </p>
  12. <div class="article-body">
  13. {{post.content}}
  14. </div>
  15. </section>
  16. <!-- comment box -->
  17. <section class="comment-box">
  18. <!-- comments -->
  19. <div class="comments">
  20. {% if post.comments %}
  21. <h3> comments </h3>
  22. {% for cmt in post.comments %}
  23. {% include "comment.twig" with {comment:cmt} %}
  24. {% endfor %}
  25. {% endif %}
  26. </div>
  27. {% if post.comment_status == "closed" %}
  28. <p> comments for this post are closed </p>
  29. {% else %}
  30. <!-- comment form -->
  31. {% include "comment-form.twig" %}
  32. {% endif %}
  33. </section>
  34. </article>
  35. </div><!-- /content-wrapper -->
  36. {% endblock %}