Files
sage/resources/views/partials/comments.blade.php

40 lines
792 B
PHP

@if (! post_password_required())
<section id="comments" class="comments">
@if ($comments)
<h2>
{!! $title !!}
</h2>
<ol class="comment-list">
@php($comments)
</ol>
@if ($paginated)
<nav aria-label="Comment">
<ul class="pager">
@if ($previous)
<li class="previous">
{!! $previous !!}
</li>
@endif
@if ($next)
<li class="next">
{!! $next !!}
</li>
@endif
</ul>
</nav>
@endif
@endif
@if ($closed)
<x-alert type="warning">
{!! __('Comments are closed.', 'sage') !!}
</x-alert>
@endif
@php(comment_form())
</section>
@endif