|
|
@@ -12,7 +12,7 @@ $this->styles($this->html->style('view'));
|
|
|
|
|
|
<section id="info"><p>
|
|
|
<?php if(isset($anime->foreign_titles)):
|
|
|
- $str = 'Foreign titles:';
|
|
|
+ $str = '<b>Foreign titles:</b>';
|
|
|
for ($i = 0; $i < count($anime->foreign_titles); $i++) {
|
|
|
if ($i > 0) $str .= '<b>,</b>';
|
|
|
$str .= ' ' . $anime->foreign_titles[$i];
|
|
|
@@ -22,7 +22,7 @@ $this->styles($this->html->style('view'));
|
|
|
<?= $str ?>
|
|
|
<?php endif; ?>
|
|
|
<?php if(isset($anime->alternative_titles)):
|
|
|
- $str = 'Alternative titles:';
|
|
|
+ $str = '<b>Alternative titles:</b>';
|
|
|
for ($i = 0; $i < count($anime->alternative_titles); $i++) {
|
|
|
if ($i > 0) $str .= '<b>,</b>';
|
|
|
$str .= ' ' . $anime->alternative_titles[$i];
|
|
|
@@ -31,35 +31,35 @@ $this->styles($this->html->style('view'));
|
|
|
?>
|
|
|
<?= $str ?>
|
|
|
<?php endif; ?>
|
|
|
-Type: <?= $anime->view_type ?><br>
|
|
|
-Episodes: <?= $anime->episode_count ?><br>
|
|
|
-Aired: <?= $anime->aired ?><br>
|
|
|
-Producers: <?php
|
|
|
+<b>Type:</b> <?= $anime->view_type ?><br>
|
|
|
+<b>Episodes:</b> <?= $anime->episode_count ?><br>
|
|
|
+<b>Aired:</b> <?= $anime->aired ?><br>
|
|
|
+<b>Producers:</b> <?php
|
|
|
$str = '';
|
|
|
for ($i = 0; $i < count($anime->producers); $i++) {
|
|
|
if ($i > 0) $str .= ',';
|
|
|
$str .= ' <a href="/producer/view/' . $anime->producers[$i] . '">' . $anime->producers[$i] . '</a>';
|
|
|
} ?><?= $str ?><br>
|
|
|
-Genres: <?php
|
|
|
+<b>Genres:</b> <?php
|
|
|
$str = '';
|
|
|
for ($i = 0; $i < count($anime->genres); $i++) {
|
|
|
if ($i > 0) $str .= ',';
|
|
|
$str .= ' <a href="/genre/view/' . $anime->genres[$i] . '">' . $anime->genres[$i] . '</a>';
|
|
|
} ?><?= $str ?><br>
|
|
|
-Duration: <?= $anime->episode_duration ?><br>
|
|
|
-Rating: <?= $anime->rated ?><br>
|
|
|
-Related: <?= $related ?>
|
|
|
+<b>Duration:</b> <?= $anime->episode_duration ?><br>
|
|
|
+<b>Rating:</b> <?= $anime->rated ?><br>
|
|
|
+<b>Related:</b> <?= $related ?>
|
|
|
</p>
|
|
|
</section>
|
|
|
|
|
|
<aside id="malstats">
|
|
|
<h2>MAL Stats</h2>
|
|
|
<p>
|
|
|
-Score: <?= $anime->mal_score ?><br>
|
|
|
-Votes: <?= $anime->mal_score_voted ?><br>
|
|
|
-Ranked: <?= $anime->mal_rank ?><br>
|
|
|
-Popularity: <?= $anime->mal_popularity ?><br>
|
|
|
-Members: <?= $anime->mal_score ?>
|
|
|
+<b>Score:</b> <?= $anime->mal_score ?><br>
|
|
|
+<b>Votes:</b> <?= $anime->mal_score_voted ?><br>
|
|
|
+<b>Ranked:</b> <?= $anime->mal_rank ?><br>
|
|
|
+<b>Popularity:</b> <?= $anime->mal_popularity ?><br>
|
|
|
+<b>Members:</b> <?= $anime->mal_score ?>
|
|
|
</p>
|
|
|
</aside>
|
|
|
|
|
|
@@ -68,14 +68,14 @@ Members: <?= $anime->mal_score ?>
|
|
|
<a href="/anime/cast/<?= $anime->special_id ?>" onclick="return toggleCast()">Cast ↓</a>
|
|
|
</p>
|
|
|
<table>
|
|
|
-<?php foreach($anime->cast as $char): ?>
|
|
|
- <tr>
|
|
|
+<?php for ($i = 0; $i < count($anime->cast); $i++): ?>
|
|
|
+ <tr<? if ($i > 0) echo ' class="char"' ?>>
|
|
|
<td colspan="3">
|
|
|
- <?= $char->character ?>
|
|
|
+ <?= $anime->cast[$i]->character ?>
|
|
|
</td>
|
|
|
</tr>
|
|
|
- <?php if (isset($char->people)): ?>
|
|
|
- <?php foreach($char->people as $actor): ?>
|
|
|
+ <?php if (isset($anime->cast[$i]->people)): ?>
|
|
|
+ <?php foreach($anime->cast[$i]->people as $actor): ?>
|
|
|
<tr>
|
|
|
<td></td>
|
|
|
<td><?= $actor->name ?></td>
|
|
|
@@ -83,7 +83,7 @@ Members: <?= $anime->mal_score ?>
|
|
|
</tr>
|
|
|
<?php endforeach; ?>
|
|
|
<?php endif; ?>
|
|
|
-<?php endforeach; ?>
|
|
|
+<?php endfor; ?>
|
|
|
</table>
|
|
|
<br>
|
|
|
<p id="castlink">
|