xref: /webtrees/resources/views/modules/note-list/page.phtml (revision 3d2c98d1066d5e178a3d1ceb3bdc58b7ba8ee926)
1<?php
2
3use Fisharebest\Webtrees\Note;
4use Fisharebest\Webtrees\Tree;
5use Illuminate\Support\Collection;
6
7/**
8 * @var Collection<Note> $notes
9 * @var string           $title
10 * @var Tree             $tree
11 */
12
13?>
14<h2 class="wt-page-title">
15	<?= $title ?>
16</h2>
17
18<div class="wt-page-content">
19	<?= view('lists/notes-table', ['notes' => $notes, 'tree' => $tree]) ?>
20</div>
21