-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
mobile.html
50 lines (49 loc) · 1.79 KB
/
mobile.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
<!DOCTYPE html>
<html lang="en">
<head>
{{> head}}
</head>
<body>
{{> navbar }}
<main>
{{> intro}}
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m1 xl7 offset-xl1">
<!-- Sidenav -->
<div id="right" class="section scrollspy">
<h3 class="header">Navbar</h3>
<p class="caption">
The navbar is fully contained by an HTML5 Nav tag. Inside a recommended container div, there are 2 main parts of the navbar. A logo or brand link, and the
navigations links. You can align these links to the left or right.
</p>
<h4>Drag Out Menu</h4>
<p>This plugin includes several options for customizing the menu. See <a href="sidenav.html#options">Plugin Options</a> for details.</p>
<img class="mobile-image" src="images/menu.gif" />
</div>
<!-- Toast -->
<div id="toast-mobile" class="section scrollspy">
<h3 class="header">Toast</h3>
<h4>Swipe to Dismiss</h4>
<p>On all devices, you can swipe to dismiss toasts.</p>
<img class="mobile-image" src="images/toast.gif" />
</div>
</div>
<div class="col hide-on-small-only m3 xl3">
<div class="toc-wrapper">
<div style="height: 1px">
<ul class="section table-of-contents">
<li><a href="#right">Sidebar</a></li>
<li><a href="#toast-mobile">Toast</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End Container -->
</main>
{{> footer }}
<script type="module" src="/src/main.ts"></script>
</body>
</html>