UNPKG

sportsbet-mobile

Version:
63 lines (62 loc) 1.77 kB
<template name="sportsCategoryDetails"> <section class="sports sports-inner"> <div class="container"> {{#if loading}} <div class="no-results loading"> Please wait, loading ... </div> {{else}} <div class="submenu category-details"> <ul role="tablist" id="navTabs"> <li id="tab-upcoming" role="presentation" class="active"> <a>Live and upcoming</a> </li> {{#if vars.showBrowseLink.get}} <li id="tab-browse" role="presentation" data-toggle="tab"> <a>Browse Category</a> </li> {{/if}} </ul> </div> <div class="tab-content"> <div role="tabpanel" class="tab-pane fade in active" id="upcoming"> {{#if liveEvents}} <section class="content"> <h1 class="header"><b>Live</b> Now</h1> <div class="result-holder"> {{#each liveEvents}} {{> sportsLiveEventRow}} {{/each}} </div> </section> {{/if}} <section class="content"> {{#each eventDays}} <h1 class="header">{{date}}</h1> <div class="result-holder"> {{#each fixtures}} {{> sportsEventRow}} {{/each}} </div> {{else}} <div class="result-holder"> <div class="no-results"> <div class="content-holder" style="top: 38vh"> <div class="title">&nbsp;</div> <div class="body"><b>Currently no events available!</b></div> </div> </div> </div> {{/each}} {{#if moreResults}} <div id="showMoreResults" style="margin-left: 25px;"> <span class="loading">&nbsp;</span> </div> {{/if}} </section> </div> </div> {{/if}} </div> </section> </template>