xref: /webtrees/resources/views/modules/repository-list/page.phtml (revision 7c2c99fad7cacd17c98be88238ff735d82c6351b)
1*7c2c99faSGreg Roach<?php
2*7c2c99faSGreg Roach
3*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Repository;
4*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
5*7c2c99faSGreg Roachuse Illuminate\Support\Collection;
6*7c2c99faSGreg Roach
7*7c2c99faSGreg Roach/**
8*7c2c99faSGreg Roach * @var Collection<Repository> $repositories
9*7c2c99faSGreg Roach * @var string                 $title
10*7c2c99faSGreg Roach * @var Tree                   $tree
11*7c2c99faSGreg Roach */
12*7c2c99faSGreg Roach
13*7c2c99faSGreg 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/repositories-table', ['repositories' => $repositories, 'tree' => $tree]) ?>
20ff995987SGreg Roach</div>
21