xref: /webtrees/resources/views/modules/source-list/page.phtml (revision 36779af1bd0601de7819554b13a393f6edb92507)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
37c2c99faSGreg Roachuse Fisharebest\Webtrees\Source;
47c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
57c2c99faSGreg Roachuse Illuminate\Support\Collection;
67c2c99faSGreg Roach
77c2c99faSGreg Roach/**
8*36779af1SGreg Roach * @var Collection<int,Source> $sources
97c2c99faSGreg Roach * @var string                 $title
107c2c99faSGreg Roach * @var Tree                   $tree
117c2c99faSGreg Roach */
127c2c99faSGreg Roach
137c2c99faSGreg Roach?>
14ff995987SGreg Roach<h2 class="wt-page-title">
15ff995987SGreg Roach	<?= $title ?>
16ff995987SGreg Roach</h2>
17ff995987SGreg Roach
18ff995987SGreg Roach<div class="wt-page-content">
19ff995987SGreg Roach	<?= view('lists/sources-table', ['sources' => $sources, 'tree' => $tree]) ?>
20ff995987SGreg Roach</div>
21