templates for self-hosting game jams (or any other kind of jam tbh)
1@if (! post_password_required())
2 <section id="comments" class="comments">
3 @if ($responses())
4 <h2>
5 {!! $title !!}
6 </h2>
7
8 <ol class="comment-list">
9 {!! $responses !!}
10 </ol>
11
12 @if ($paginated())
13 <nav aria-label="Comment">
14 <ul class="pager">
15 @if ($previous())
16 <li class="previous">
17 {!! $previous !!}
18 </li>
19 @endif
20
21 @if ($next())
22 <li class="next">
23 {!! $next !!}
24 </li>
25 @endif
26 </ul>
27 </nav>
28 @endif
29 @endif
30
31 @if ($closed())
32 <x-alert type="warning">
33 {!! __('Comments are closed.', 'sage') !!}
34 </x-alert>
35 @endif
36
37 @php(comment_form())
38 </section>
39@endif