Sha256: aa00a6cd5fb9216b65508441e18deefe90ba7dfe03296ef62d4b83a292e63a24

Contents?: true

Size: 707 Bytes

Versions: 4

Compression:

Stored size: 707 Bytes

Contents

{% extends "layout.twig" %}
{% block content %}
  
<!-- Post Section -->
<article>

  <header>
    <h1>{{ post.title }}</h1>
    <time datetime="{{ post.post_date | date('Y F d') }}">
      {{ post.post_date | date("d M y") }}
    </time>
  </header>

  <section>
    {{ post.content }}
  </section>
  
  <footer>
    <p>
      By <a href="{{ post.author.path }}">{{ post.author.name }}</a>
    </p>
  </footer>

</article>

<!-- Comment Section -->
<section>
  {{ comment_form }}

  <ul>
    {% for comment in post.get_comments() %}
      <li>
        <h5> {{ comment.author.name }} says </h5>
        {{ comment.comment_content | wpautop }}
      </li>
    {% endfor %}
  </ul>
</section>

{% endblock %}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
edge_framework-1.3.6 template/wordpress/views/single.twig
edge_framework-1.3.5 template/wordpress/views/single.twig
edge_framework-1.3.3 template/wordpress/views/single.twig
edge_framework-1.3.2 template/wordpress/views/single.twig