Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.89 KB | None | 0 0
  1. <div class="row-schedule box-shadow">
  2.       <div class="item item-title" style="z-index: 10">Телепрограма</div>
  3.       <div class="item item-day" style="z-index: 10">{{today_shedule}}</div>
  4.  
  5.       <a href="#" class="prev" data-nav="prev" style="z-index: 10; position: absolute" hidden><i class="icon icon-prev"></i></a>
  6.  
  7.       <div class="shedule-list" style="display: inline-block; position: relative">
  8.       {{#each shedule}}
  9.       {{#if is_mtv}}<a class="item" href="/programs/view/{{program_uri}}">{{else}}<div class="item">{{/if}}
  10.       <span class="time">{{time}}</span> {{program_title}}
  11.       {{#if is_live}}<span class="now">зараз</span>{{/if}}
  12.       {{#if is_mtv}}</a>{{else}}</div>{{/if}}
  13.       {{/each}}
  14.       </div>
  15.      
  16.       <a href="#" class="next" data-nav="next" style="z-index: 10; position: absolute" hidden><i class="icon icon-next"></i></a>
  17.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement