blob: c92ff83cd5a2bf5e4740d67e81feeec1e4e296af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<table>
<th>Title</th>
<th>Date</th>
<th style="width: 200px">Type</th>
<?php foreach ($manga as $m): ?>
<tr>
<td>
<a href="/manga/view/<?= $m->special_id ?>"><?= $m->title ?></a>
<?php if (isset($m->foreign_titles) || isset($m->alternative_titles)): ?>
<span class="alt_titles">
<?php if (isset($m->foreign_titles)): ?>
<?= $m->foreign_titles[0] ?>
<?php endif ?>
<?php if (isset($m->alternative_titles)): ?>
<?= $m->alternative_titles[0] ?>
<?php endif ?>
</span>
<?php endif ?>
</td>
<td>
<?= $m->publish_period ?>
</td>
<td>
<?= $m->author ?>
</td>
</tr>
<?php endforeach ?>
</table>
|