blob: 2711b4a89e95d93204b747848426ba53923ae835 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<section class="card" onclick="window.location.href = '<?= $goto ?>'">
<section class="quickinfo">
<a href="<?= $page->URL ?>"><?= $page->URL ?></a>
<span class="float-right"><?= $page->Date ?></span>
</section>
<section class="title">
<img src="<?= '/archives/' . $page->FaviconPath ?>"></span>
<span><?= $page->Title ?></span>
</section>
<section>
<strong>Visits: <?= $page->totalViewCount() ?></strong>
<strong>Archives: <?= count($page->allArchives()) ?></strong>
</section>
</section>
|