-
Notifications
You must be signed in to change notification settings - Fork 13
/
_layout.html
88 lines (77 loc) · 3.1 KB
/
_layout.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="date" content="{{data.typedoc.generatedAt}}">
<title>{{title if title}}{{" | " + titleSegments | join(" |") if titleSegments}}{{" | " if title}}@esri/hub.js</title>
{% if description %}
<meta name="description" content="A modular, high quality toolkit for working with ArcGIS Hub">
{% endif %}
<link rel="stylesheet" href="/hub.js/css/calcite-web.min.css">
<link rel="stylesheet" href="/hub.js/css/style.css">
{% block css %}{% endblock %}
</head>
<body>
<!-- Drawer -->
<div class="drawer drawer-left js-drawer" data-drawer="top-nav" tabindex="0">
<nav class="drawer-nav" role="navigation">
<aside class="side-nav">
<h2 class="side-nav-title">@esri/hub.js</h2>
{% link "/hub.js/guides/", "Guides", class="side-nav-link" %}
{% link "/hub.js/api/", "API Reference", class="side-nav-link"%}
</aside>
</nav>
</div>
<div id="page" class="wrapper">
<!-- Sample HTML -->
<header class="top-nav">
<div class="grid-container">
<div class="column-24">
<!-- desktop sized navigation -->
<div class="tablet-hide">
<!-- logo / home -->
<a href="/hub.js/" class="top-nav-title">@esri/hub.js</a>
<!-- primary navigation sections -->
<nav class="top-nav-list" role="navigation" aria-labelledby="topnav">
{% link "/hub.js/guides/", "Guides", class="top-nav-link" %}
{% link "/hub.js/api/", "API Reference", class="top-nav-link"%}
<a href="https://github.com/Esri/hub.js" class="top-nav-link">GitHub</a>
</nav>
</div>
<!-- tablet and mobile sized navigation -->
<div class="tablet-show top-nav-flex">
<!-- open primary navigation drawer -->
<nav class="top-nav-flex-list" role="navigation" aria-labelledby="topnav">
<a href="/hub.js/" class="icon-ui-menu top-nav-link js-drawer-toggle" data-drawer="top-nav"><span class="phone-hide">Menu</span></a>
</nav>
<!-- logo / home -->
<header class="top-nav-flex-title">
<a href="/hub.js/" class="top-nav-link">@esri/hub.js</a>
</header>
</div>
</div>
</div>
</header>
<main id="#skip-to-content">
{% block main %}{% endblock %}
</main>
</div>
<footer class="footer">
{% block footer %}{% endblock %}
<div class="panel panel-white">
<div class="grid-container">
<div class="column-24">
<a href="https://github.com/Esri/hub.js" class="font-size--2">Fork this project</a>
</div>
</div>
</div>
</footer>
<script src="hub.js/js/calcite-web.min.js"></script>
<script>
calcite.init()
</script>
{% block scripts %}{% endblock %}
</body>
</html>