forked from homata/brownbag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (59 loc) · 2.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>流山テイクアウトマップ</title>
<link rel="stylesheet" href="https://unpkg.com/onsenui/css/onsenui.css">
<link rel="stylesheet" href="https://unpkg.com/onsenui/css/onsen-css-components.min.css">
<script src="https://unpkg.com/onsenui/js/onsenui.min.js"></script>
<script src="https://unpkg.com/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
</head>
<body>
<ons-navigator id="appNavigator" swipeable swipe-target-width="80px">
<ons-page>
<ons-splitter id="appSplitter">
<ons-splitter-side id="sidemenu" page="sidemenu.html" swipeable side="right" collapse="" width="260px"></ons-splitter-side>
<ons-splitter-content page="tabbar.html"></ons-splitter-content>
</ons-splitter>
</ons-page>
</ons-navigator>
<ons-template id="tabbar.html">
<ons-page>
<ons-toolbar>
<div class="center" id="toolbar-title">流山テイクアウトマップ</div>
<div class="right">
<ons-toolbar-button onclick="fn.toggleMenu()">
<ons-icon icon="fa-bars"></ons-icon>
</ons-toolbar-button>
</div>
</ons-toolbar>
<ons-tabbar position="bottom" animation="none">
<ons-tab label="ホーム" icon="fa-home" page="home.html" active>
</ons-tab>
<ons-tab label="お店を探す" icon="fa-list" page="list.html">
</ons-tab>
<ons-tab label="マップ" icon="fa-map" active-icon="fa-map-o" page="map.html">
</ons-tab>
<!--
<ons-tab label="情報" icon="fa-info" page="info.html">
</ons-tab>
<ons-tab label="設定" icon="fa-cog" active-icon="fa-cogs" page="setting.html">
</ons-tab>
-->
<ons-tab label="投稿する" icon="fa-info" page="about.html">
</ons-tab>
</ons-tabbar>
</ons-page>
</ons-template>
<script src="app.js"></script>
</body>
</html>