You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
430 B
13 lines
430 B
<article @php(post_class())> |
|
<header> |
|
<h1 class="entry-title">{{ get_the_title() }}</h1> |
|
@include('partials/entry-meta') |
|
</header> |
|
<div class="entry-content"> |
|
@php(the_content()) |
|
</div> |
|
<footer> |
|
{!! wp_link_pages(['echo' => 0, 'before' => '<nav class="page-nav"><p>' . __('Pages:', 'aldine'), 'after' => '</p></nav>']) !!} |
|
</footer> |
|
@php(comments_template('/partials/comments.blade.php')) |
|
</article>
|
|
|