2015-06-16 11:11:35 -04:00
|
|
|
<main>
|
2017-02-15 16:30:14 -05:00
|
|
|
<?php if ($auth->isAuthenticated()): ?>
|
2016-04-14 19:10:03 -04:00
|
|
|
<a class="bracketed" href="<?= $url->generate('collection.add.get') ?>">Add Item</a>
|
2015-12-08 14:52:59 -05:00
|
|
|
<?php endif ?>
|
2015-07-02 14:04:04 -04:00
|
|
|
<?php if (empty($sections)): ?>
|
|
|
|
<h3>There's nothing here!</h3>
|
|
|
|
<?php else: ?>
|
2015-06-16 11:11:35 -04:00
|
|
|
<?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'] ?>">
|
2017-04-03 16:49:40 -04:00
|
|
|
<img src="https://media.kitsu.io/anime/poster_images/<?= $item['hummingbird_id'] ?>/small.jpg"
|
|
|
|
alt="<?= $item['title'] ?> cover image" />
|
2015-06-16 11:11:35 -04:00
|
|
|
<div class="name">
|
2016-03-07 14:37:49 -05:00
|
|
|
<a href="<?= $url->generate('anime.details', ['id' => $item['slug']]) ?>">
|
2015-06-16 11:11:35 -04:00
|
|
|
<?= $item['title'] ?>
|
2017-01-16 14:03:30 -05:00
|
|
|
<?= ($item['alternate_title'] != "") ? "<small><br />{$item['alternate_title']}</small>" : ""; ?>
|
2015-07-02 14:04:04 -04:00
|
|
|
</a>
|
2015-06-16 11:11:35 -04:00
|
|
|
</div>
|
2015-06-17 08:50:01 -04:00
|
|
|
<div class="table">
|
2017-02-15 16:30:14 -05:00
|
|
|
<?php if ($auth->isAuthenticated()): ?>
|
2016-01-04 10:53:03 -05:00
|
|
|
<div class="row">
|
2017-03-30 16:16:40 -04:00
|
|
|
<span class="edit">
|
|
|
|
<a class="bracketed" href="<?= $url->generate('collection.edit.get', [
|
|
|
|
'id' => $item['hummingbird_id']
|
|
|
|
]) ?>">Edit</a>
|
|
|
|
</span>
|
2016-01-04 10:53:03 -05:00
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
2015-06-17 08:50:01 -04:00
|
|
|
<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>
|
2015-06-16 11:11:35 -04:00
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<?php endforeach ?>
|
2015-06-11 12:54:54 -04:00
|
|
|
</section>
|
2015-06-16 11:11:35 -04:00
|
|
|
</section>
|
|
|
|
<?php endforeach ?>
|
2015-07-02 14:04:04 -04:00
|
|
|
<?php endif ?>
|
2015-09-28 14:41:45 -04:00
|
|
|
</main>
|