Sha256: 72b3c64726f6b1f2cfb8720bc8e9247347502cd62fc8cd7bcf6b9390630b9cc8

Contents?: true

Size: 747 Bytes

Versions: 6

Compression:

Stored size: 747 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

6 entries across 6 versions & 1 rubygems

Version Path
edge_framework-2.1.1 template/wordpress/views/single.twig
edge_framework-2.1.0 template/wordpress/views/single.twig
edge_framework-2.0.0 template/wordpress/views/single.twig
edge_framework-2.0.0.a template/wordpress/views/single.twig
edge_framework-1.4.1 template/wordpress/views/single.twig
edge_framework-1.4.0 template/wordpress/views/single.twig