説明なし

app.index.html 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!--Hilight-->
  2. <div ng-if="topStory">
  3. <div ng-repeat="p in topStory">
  4. <div class="hidden-lg relativemb">
  5. <a ui-sref="app.view({id: p._id.$oid })"><img ng-src="{{ p | find_image_size :'storyart_1920_1080' |image_server :'-1350x500x0' }}" style="height: 260px;width: 100%;"></a>
  6. </div>
  7. <div class="absolutemb hidden-lg top-caption-overlay pointer" ui-sref='app.view({id: p._id.$oid })'>
  8. <strong>
  9. {{ p.title }}</strong>
  10. <p>{{ p.description }}</p>
  11. <a class="btn-primary btn">Play</a>
  12. <!--
  13. <button type="button" class="btn btn-default">Add Favorite</button> -->
  14. </div>
  15. <!--PC-->
  16. <div class="visible-lg relative">
  17. <a href="#"><img ng-src="{{ p | find_image_size :'storyart_1920_1080' | image_server: '-1350x500x0' }}" style="height: 500px;width:100%;"></a>
  18. </div>
  19. <div class="absolute visible-lg top-caption-overlay" >
  20. <h1>
  21. {{ p.title }}</h1>
  22. <h3>{{ p.description }}</h3>
  23. <a class="btn-primary btn" ui-sref="app.view({id: p._id.$oid })">Play</a>
  24. <!--
  25. <button type="button" class="btn btn-default">Add Favorite</button> -->
  26. </div>
  27. <!--End Hilight-->
  28. </div>
  29. </div>
  30. <!--Moblie Top-->
  31. <div class="container hidden-lg">
  32. <h3>Top Picks For You</h3>
  33. <section class="regular slider">
  34. <div ng-repeat="p in topPicks" class='pointer' ui-sref="app.view({id: p._id.$oid })">
  35. <img ng-src="{{ p | find_image_size :'vert_571_800' | image_server :'-578x800x1' }}" style="width:100%; height:auto">
  36. </div>
  37. </section>
  38. </div>
  39. <!--End Moblie Top-->
  40. <div class="container visible-lg">
  41. <h3>Top Picks For You</h3>
  42. <section class="regular slider">
  43. <div ng-repeat="p in topPicks" class='pointer' ui-sref="app.view({id: p._id.$oid })">
  44. <img ng-src="{{ p | find_image_size: 'vert_571_800' | image_server :'-578x800x1' }}" style="width:100%; height:auto">
  45. </div>
  46. </section>
  47. </div>
  48. </br></br>
  49. <!--ContinueWatch-->
  50. <!--Moblie Continue-->
  51. <div class="container hidden-lg " style="margin-top: -60px;">
  52. <h3>Continue Watch For You</h3>
  53. <a ng-repeat="p in recs" ui-sref="app.view({id: p._id.$oid })">
  54. <img ng-src="{{ p | find_image_size: 'horz_1280_720' | image_server :'-1280x720x1' }}" style="width:100%; height:auto">
  55. </a>
  56. </div>
  57. <!--End Moblie Continue-->
  58. <div class="container visible-lg">
  59. <h3>Continue Watch For You</h3>
  60. <div class="col-lg-6" ng-repeat="p in recs">
  61. <a ui-sref="app.view({id: p._id.$oid })">
  62. <img ng-src="{{ p | find_image_size: 'horz_1280_720' | image_server :'-1280x720x1' }}" style="width:100%; height:auto">
  63. </a>
  64. </div>
  65. </div>
  66. <!--endcon-->
  67. <!--Moblie NF-->
  68. <div class="container" ng-repeat='o in ottCats'>
  69. <h3>{{ o.title }}</h3>
  70. <section class="regular slider">
  71. <div ng-repeat="p in this[o.varName]" class='pointer' ui-sref="app.view({id: p._id.$oid })">
  72. <img ng-src="{{ p | find_image_size: 'vert_571_800' | image_server :'-578x800x1' }}" style="width:100%; height:auto">
  73. </div>
  74. </section>
  75. <br><br>
  76. </div>