anime.html.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <h2 class="ribbon full"><?= $content->title ?></h2>
  2. <div class="triangle-ribbon"></div>
  3. <br class="cl" />
  4. <div class="container_12">
  5. <!-- Start Sidebar -->
  6. <div class="grid_4" id="sidebar">
  7. <img src="<?=$content->image ?>" >
  8. <h2 class="ribbon"> Alternative Titles </h2>
  9. <hr/>
  10. <p>
  11. <?php if(isset($content->alternative_titles)) : ?>
  12. <?php foreach($content->alternative_titles as $title): ?>
  13. <?= $title ?>
  14. <?php endforeach; ?>
  15. <?php endif; ?>
  16. </p>
  17. <h2> Information </h2>
  18. <span> Type: <?= $content->view_type ?> </span>
  19. Episodes: <?= $content->episode_count ?><br/>
  20. Status: <?= $content->status ?><br/>
  21. Aired: <?= $content->aired ?><br/>
  22. Producers: <?php foreach($content->producers as $producer): ?>
  23. <a href="/producer/view/<?= $producer ?>"><?= $producer ?></a>,
  24. <?php endforeach; ?><br/>
  25. Genres: <?php foreach($content->genres as $genres): ?>
  26. <a href="/genres/view/<?= $genres ?>"><?= $genres ?></a>,
  27. <?php endforeach ?><br/>
  28. Duration: <?= $content->episode_duration ?><br/>
  29. Rating: <?= $content->rating ?><br/>
  30. <h2 class="ribbon">Statistics</h2>
  31. Score: <br/>
  32. Ranked: <br/>
  33. Popularity: <br/>
  34. Members:<br/>
  35. Favorited by: over 9000 Users<br/>
  36. <h2 class="ribbon"> My Info </h2>
  37. <hr/>
  38. <!-- End Sidebar -->
  39. </div>
  40. <div class="grid_8" id="content">
  41. <!-- Start Content -->
  42. <h2>Synopsis</h2>
  43. <hr/>
  44. <?= $content->synopsis ?>
  45. <h2>Related Animes</h2>
  46. <hr/>
  47. <h2>Characters And VA's </h2>
  48. <hr/>
  49. <?php foreach($content->cast as $char): ?>
  50. <?= $char->character ?>
  51. <?= $char->role ?>
  52. Played by:
  53. <?php if (isset($char->people)): ?>
  54. <?php foreach($char->people as $actor): ?>
  55. <?= $actor->name ?>
  56. <?= $actor->language ?>
  57. <?php endforeach; ?>
  58. <?php endif; ?>
  59. <?php endforeach; ?>
  60. </div>
  61. <br class="cl"/>
  62. </div>