Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <?php
  2. $episodes = $anime->getEpisodes();
  3. foreach ($episodes as $episode){
  4. echo "<div class='fig-cont position-relative pr-2 w-25' data-sub='true' data-dub='true'>
  5. <div class='list-view-link py-1 px-1 my-1 border-secondary'>
  6. <a href='{$episode->url('episode')}'>{$episode->name()}</a></div>
  7. <figure class='fig-box text-left'>
  8. <img src='{$episode->image()}' class='figure-img img-fluid rounded mb-0' width='100%' height='170'>
  9. <div class='overlay rounded'></div>
  10. <a href='{$episode->url('subbed')}' class='overlink' data-link='slink'></a>
  11. <a href='{$episode->url('dubbed')}' class='overlink' data-link='dlink' style='z-index: 11'></a>
  12. <span class='overplay text-white'><i class='fa fa-play fa-3x' aria-hidden='true'></i></span>
  13. <figcaption class='small thumb-cap text-shadow'><small>{$episode->name()}</small></figcaption>
  14. <p>date</p>
  15.  
  16. </figure>
  17. </div>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement