47 lines
1.8 KiB
HTML
47 lines
1.8 KiB
HTML
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
||
|
|
||
|
<div class="page tabbed" data-name="main">
|
||
|
|
||
|
<div class="navbar">
|
||
|
<div class="navbar-bg"></div>
|
||
|
<div class="navbar-inner">
|
||
|
<div class="title">Lecte</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="toolbar tabbar tabbar-labels toolbar-bottom">
|
||
|
<div class="toolbar-inner">
|
||
|
<a href="/" data-route-tab-id="ranking-tab" class="tab-link">
|
||
|
<i class="icon f7-icons if-not-md">list_number</i>
|
||
|
<i class="icon material-icons md-only">poll</i>
|
||
|
<!-- Label text -->
|
||
|
<span class="tabbar-label">Ranking</span>
|
||
|
</a>
|
||
|
<a href="/map" data-route-tab-id="map-tab" class="tab-link">
|
||
|
<i class="icon f7-icons if-not-md">location</i>
|
||
|
<i class="icon material-icons md-only">near_me</i>
|
||
|
<span class="tabbar-label">Map</span>
|
||
|
</a>
|
||
|
<a href="/myprofile" data-route-tab-id="myprofile-tab" class="tab-link">
|
||
|
<i class="icon f7-icons if-not-md">person_circle</i>
|
||
|
<i class="icon material-icons md-only">account_circle</i>
|
||
|
<span class="tabbar-label">Profile</span>
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="tabs tabs-routable">
|
||
|
<div class="tab page-content" id="ranking-tab"></div>
|
||
|
<div class="tab page-content" id="map-tab"></div>
|
||
|
<div class="tab page-content" id="myprofile-tab"></div>
|
||
|
</div>
|
||
|
|
||
|
<script>
|
||
|
$("#map-tab").on("tab:mounted", function () {
|
||
|
reloadMap();
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
</div>
|