-
Notifications
You must be signed in to change notification settings - Fork 860
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes behavior of day buttons in tracks & rooms
- Loading branch information
1 parent
3957a99
commit f4faabf
Showing
6 changed files
with
88 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{{#if flag}} | ||
<div id="tabs" class="tabs no-js"> | ||
<div class="tabs-nav"> | ||
<span id="tabs" class="col-md-6 tabs no-js"> | ||
<span class="tabs-nav"> | ||
{{#days}} | ||
<a href="#" class="tabs-nav-link">{{caption}}</a> | ||
<a id="{{firstSlug}}" href="#" class="tabs-nav-link">{{caption}}</a> | ||
{{/days}} | ||
</div> | ||
</span> | ||
{{#days}} | ||
<div class="tab"> | ||
<div class="tab-content">{{#tracks}}<a href = "./tracks.html#{{slug}}">{{title}} </a>{{/tracks}}</div> | ||
</div> | ||
<span class="tab"> | ||
<span class="tab-content">{{#tracks}}<a href = "./tracks.html#{{slug}}">{{title}} </a>{{/tracks}}</span> | ||
</span> | ||
{{/days}} | ||
</div> | ||
</span> | ||
{{else}} | ||
<div id="tabs" class="tabs no-js"> | ||
<div class="tabs-nav"> | ||
{{#timeList}} | ||
<a href="#" class="tabs-nav-link">{{date}}</a> | ||
{{/timeList}} | ||
</div> | ||
<span id="tabs" class="col-md-6 tabs no-js"> | ||
<span class="tabs-nav"> | ||
{{#roomsinfo}} | ||
<a id="{{slug}}" href="#" class="tabs-nav-link">{{date}}</a> | ||
{{/roomsinfo}} | ||
</span> | ||
{{#roomsinfo}} | ||
<div class="tab"> | ||
<div class="tab-content">{{#venue}}{{#if venue}}<a href = "./rooms.html#venue-{{../slug}}-{{slug}}">{{venue}} {{/if}} </a>{{/venue}}</div> | ||
</div> | ||
<span class="tab"> | ||
<span class="tab-content">{{#venue}}{{#if venue}}<a href = "./room.html#venue-{{../slug}}-{{slug}}">{{venue}} {{/if}} </a>{{/venue}}</span> | ||
</span> | ||
{{/roomsinfo}} | ||
</div> | ||
</span> | ||
{{/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters