ucloud-docs/lektor/templates/layout.html

46 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2019-10-10 16:27:42 +00:00
<!doctype html>
2019-10-12 15:16:06 +00:00
<head>
<!-- Google analytics -->
<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-62285904-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<meta charset="utf-8">
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
<title>{% block title %}Welcome{% endblock %} — ucloud</title>
</head>
2019-10-10 16:27:42 +00:00
<body>
<header>
<h1>ucloud</h1>
<nav>
<ul class="nav navbar-nav">
<li{% if this._path == '/' %} class="active"{% endif
%}><a href="{{ '/'|url }}">Welcome</a></li>
{% for href, title in [
2019-10-12 17:16:33 +00:00
['/install', 'Installation'],
['/configure', 'Configuration']
2019-10-10 16:27:42 +00:00
] %}
<li{% if this.is_child_of(href) %} class="active"{% endif
%}><a href="{{ href|url }}">{{ title }}</a></li>
{% endfor %}
</ul>
</nav>
</header>
<div class="page">
{% block body %}{% endblock %}
</div>
<footer>
2019-10-12 15:16:06 +00:00
&copy; Copyright by ungleich.
2019-10-10 16:27:42 +00:00
</footer>
</body>