HummingBirdAnimeClient/app/views/collection/cover.php

41 lines
1.3 KiB
PHP
Raw Normal View History

2018-08-10 20:09:28 -04:00
<main class="media-list">
2017-02-15 16:30:14 -05:00
<?php if ($auth->isAuthenticated()): ?>
<a class="bracketed" href="<?= $url->generate($collection_type . '.collection.add.get') ?>">Add Item</a>
2015-12-08 14:52:59 -05:00
<?php endif ?>
<?php if (empty($sections)): ?>
<h3>There's nothing here!</h3>
<?php else: ?>
<br />
<label>Filter: <input type='text' class='media-filter' /></label>
<br />
2018-08-08 17:04:35 -04:00
<div class="tabs">
<?php $i = 0; ?>
<?php foreach ($sections as $name => $items): ?>
2018-08-08 17:04:35 -04:00
<input <?= $i === 0 ? 'checked="checked"' : '' ?> type="radio" id="collection-tab-<?= $i ?>" name="collection-tabs" />
<label for="collection-tab-<?= $i ?>"><h2><?= $name ?></h2></label>
2018-11-01 22:01:09 -04:00
<div class="content full-height">
<section class="media-wrap">
2018-08-08 17:04:35 -04:00
<?php foreach ($items as $item): ?>
2018-08-10 20:09:28 -04:00
<?php include __DIR__ . '/cover-item.php'; ?>
<?php endforeach ?>
2015-06-11 12:54:54 -04:00
</section>
2018-08-08 17:04:35 -04:00
</div>
<?php $i++; ?>
<?php endforeach ?>
<!-- All Tab -->
<input type='radio' id='collection-tab-<?= $i ?>' name='collection-tabs' />
<label for='collection-tab-<?= $i ?>'><h2>All</h2></label>
<div class='content full-height'>
<?php foreach ($sections as $name => $items): ?>
<h3><?= $name ?></h3>
<section class="media-wrap">
<?php foreach ($items as $item): ?>
<?php include __DIR__ . '/cover-item.php'; ?>
<?php endforeach ?>
</section>
<?php endforeach ?>
</div>
2018-08-08 17:04:35 -04:00
</div>
<?php endif ?>
2015-09-28 14:41:45 -04:00
</main>