forked from keras-team/keras-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
97 lines (76 loc) · 3.77 KB
/
base.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
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Keras documentation">
<meta name="author" content="Keras Team">
<link rel="shortcut icon" href="https://keras.io/img/favicon.ico">
<!-- Social -->
<meta property="og:title" content="Keras documentation: {{title}}">
<meta property="og:image" content="https://keras.io/img/logo-k-keras-wb.png">
<meta name="twitter:title" content="Keras documentation: {{title}}">
<meta name="twitter:image" content="https://keras.io/img/k-keras-social.png">
<meta name="twitter:card" content="summary">
<title>{{title}}</title>
<!-- Bootstrap core CSS -->
<link href="{{base_url}}css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="{{base_url}}css/docs.css" rel="stylesheet">
<link href="{{base_url}}css/monokai.css" rel="stylesheet">
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5DNGF4N');
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-175165319-128', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Tag Manager -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5DNGF4N"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class='k-page'>
<div class="k-nav" id="nav-menu">
<a href='{{base_url}}'><img src='{{base_url}}img/logo-small.png' class='logo-small' /></a>
<span class="gh-btn-container">
<a class="github-button" href="https://github.com/keras-team/keras" data-size="large" data-show-count="true" aria-label="Star keras-team/keras on GitHub">Star</a>
</span>
<div class="nav flex-column nav-pills" role="tablist" aria-orientation="vertical">
{% for item in nav %}
<a class="nav-link{% if item.active %} active{% endif %}" href="{{item.url}}" role="tab" aria-selected="{{item.selected}}">{{item.title}}</a>
{% if item.active %}
{% for child in item.children %}
<a class="nav-sublink{% if child.active %} active{% endif %}" href="{{child.url}}">{{child.title}}</a>
{% if child.active %}
{% for grandchild in child.children %}
<a class="nav-sublink2{% if grandchild.active %} active{% endif %}" href="{{grandchild.url}}">{{grandchild.title}}</a>
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
</div>
</div>
<div class='k-main'>
{{main}}
</div>
</div>
</body>
<footer style="float: left; width: 100%; padding: 1em; border-top: solid 1px #bbb;">
<a href="https://policies.google.com/terms">Terms</a> | <a href="https://policies.google.com/privacy">Privacy</a>
</footer>
</html>