content-single.blade.php 407 B

12345678910111213141516171819
  1. <article @php(post_class('h-entry'))>
  2. <header>
  3. <h1 class="p-name">
  4. {!! $title !!}
  5. </h1>
  6. @include('partials.entry-meta')
  7. </header>
  8. <div class="e-content">
  9. @php(the_content())
  10. </div>
  11. <footer>
  12. {!! wp_link_pages(['echo' => 0, 'before' => '<nav class="page-nav"><p>' . __('Pages:', 'sage'), 'after' => '</p></nav>']) !!}
  13. </footer>
  14. @php(comments_template())
  15. </article>