single.twig 716 B

1234567891011121314151617181920
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. <div class="content-wrapper">
  4. {{dump(post)}}
  5. <article class="post-type-{{ post.post_type }}" id="post-{{ post.ID }}">
  6. <img src="{{ post.thumbnail.src|resize(1200, 300) }}">
  7. <section class="article-content">
  8. <h1 class="article-h1">{{ post.title }}</h1>
  9. <a href="{{ post.link }}">{{ _e('edit') }}</a>
  10. <p class="blog-author">
  11. <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>
  12. </p>
  13. <div class="article-body">
  14. {{post.content}}
  15. </div>
  16. </section>
  17. </article>
  18. </div><!-- /content-wrapper -->
  19. {% endblock %}