xref: /webtrees/resources/views/modules/source-list/page.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Source;
67c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
77c2c99faSGreg Roachuse Illuminate\Support\Collection;
87c2c99faSGreg Roach
97c2c99faSGreg Roach/**
1036779af1SGreg Roach * @var Collection<int,Source> $sources
117c2c99faSGreg Roach * @var string                 $title
127c2c99faSGreg Roach * @var Tree                   $tree
137c2c99faSGreg Roach */
147c2c99faSGreg Roach
157c2c99faSGreg Roach?>
16ff995987SGreg Roach<h2 class="wt-page-title">
17ff995987SGreg Roach    <?= $title ?>
18ff995987SGreg Roach</h2>
19ff995987SGreg Roach
20ff995987SGreg Roach<div class="wt-page-content">
21ff995987SGreg Roach    <?= view('lists/sources-table', ['sources' => $sources, 'tree' => $tree]) ?>
22ff995987SGreg Roach</div>
23