45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
<main>
|
|
<?php if ($auth->isAuthenticated()): ?>
|
|
<a class="bracketed" href="<?= $url->generate('collection.add.get') ?>">Add Item</a>
|
|
<?php endif ?>
|
|
<?php if (empty($sections)): ?>
|
|
<h3>There's nothing here!</h3>
|
|
<?php else: ?>
|
|
<?php foreach ($sections as $name => $items): ?>
|
|
<section class="status">
|
|
<h2><?= $name ?></h2>
|
|
<section class="media-wrap">
|
|
<?php foreach($items as $item): ?>
|
|
<article class="media" id="a-<?= $item['hummingbird_id'] ?>">
|
|
<img src="https://media.kitsu.io/anime/poster_images/<?= $item['hummingbird_id'] ?>/small.jpg"
|
|
alt="<?= $item['title'] ?> cover image" />
|
|
<div class="name">
|
|
<a href="<?= $url->generate('anime.details', ['id' => $item['slug']]) ?>">
|
|
<?= $item['title'] ?>
|
|
<?= ($item['alternate_title'] != "") ? "<small><br />{$item['alternate_title']}</small>" : ""; ?>
|
|
</a>
|
|
</div>
|
|
<div class="table">
|
|
<?php if ($auth->isAuthenticated()): ?>
|
|
<div class="row">
|
|
<span class="edit">
|
|
<a class="bracketed" href="<?= $url->generate('collection.edit.get', [
|
|
'id' => $item['hummingbird_id']
|
|
]) ?>">Edit</a>
|
|
</span>
|
|
</div>
|
|
<?php endif ?>
|
|
<div class="row">
|
|
<div class="completion">Episodes: <?= $item['episode_count'] ?></div>
|
|
<div class="media_type"><?= $item['show_type'] ?></div>
|
|
<div class="age_rating"><?= $item['age_rating'] ?></div>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
<?php endforeach ?>
|
|
</section>
|
|
</section>
|
|
<?php endforeach ?>
|
|
<?php endif ?>
|
|
</main>
|