You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.8 KiB
HTML

<!--
Copyright 2020 Netsyms Technologies.
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">CommunityVotingApp</div>
</div>
</div>
<div class="toolbar tabbar tabbar-labels toolbar-bottom">
<div class="toolbar-inner">
<a href="/" data-route-tab-id="discover-tab" class="tab-link">
<i class="icon f7-icons ios-only">search</i>
<i class="icon material-icons if-not-ios">search</i>
<!-- Label text -->
<span class="tabbar-label">Find</span>
</a>
<a href="/map" data-route-tab-id="map-tab" class="tab-link">
<i class="icon f7-icons ios-only">location</i>
<i class="icon material-icons if-not-ios">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 ios-only">person_circle</i>
<i class="icon material-icons if-not-ios">account_circle</i>
<span class="tabbar-label">Profile</span>
</a>
</div>
</div>
<div class="tabs tabs-routable">
<div class="tab page-content" id="discover-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>