🎨 Simplify the default Composers (#3250)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
@if (! post_password_required())
|
||||
<section id="comments" class="comments">
|
||||
@if ($responses)
|
||||
@if ($responses())
|
||||
<h2>
|
||||
{!! $title !!}
|
||||
</h2>
|
||||
@@ -9,16 +9,16 @@
|
||||
{!! $responses !!}
|
||||
</ol>
|
||||
|
||||
@if ($paginated)
|
||||
@if ($paginated())
|
||||
<nav aria-label="Comment">
|
||||
<ul class="pager">
|
||||
@if ($previous)
|
||||
@if ($previous())
|
||||
<li class="previous">
|
||||
{!! $previous !!}
|
||||
</li>
|
||||
@endif
|
||||
|
||||
@if ($next)
|
||||
@if ($next())
|
||||
<li class="next">
|
||||
{!! $next !!}
|
||||
</li>
|
||||
@@ -28,7 +28,7 @@
|
||||
@endif
|
||||
@endif
|
||||
|
||||
@if ($closed)
|
||||
@if ($closed())
|
||||
<x-alert type="warning">
|
||||
{!! __('Comments are closed.', 'sage') !!}
|
||||
</x-alert>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@php(the_content())
|
||||
|
||||
@if ($pagination)
|
||||
@if ($pagination())
|
||||
<nav class="page-nav" aria-label="Page">
|
||||
{!! $pagination !!}
|
||||
</nav>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
@php(the_content())
|
||||
</div>
|
||||
|
||||
@if ($pagination)
|
||||
@if ($pagination())
|
||||
<footer>
|
||||
<nav class="page-nav" aria-label="Page">
|
||||
{!! $pagination !!}
|
||||
|
||||
Reference in New Issue
Block a user