-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathheader.html
More file actions
35 lines (33 loc) · 875 Bytes
/
header.html
File metadata and controls
35 lines (33 loc) · 875 Bytes
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
<!DOCTYPE html>
{% assets "js_all" %}
<script type="text/javascript" src="{{ ASSET_URL }}"></script>
{% endassets %}
{% assets "css_all" %}
<link rel=stylesheet type="text/css" href="{{ ASSET_URL }}"> {% endassets %}
<style>
header .branding {
display: flex;
align-items: center;
}
</style>
<html lang="en">
<head>
<title>
Python-Flask Clarity Example
</title>
</head>
<header class="header-6">
<div class="branding">
<clr-icon shape="vm"></clr-icon>
<span class="title">Py-Clarity</span>
</div>
<div class="header-nav">
<a href="/" class="nav-link nav-text">Home</a>
<a href="/vms" class="nav-link nav-text">VM List</a>
<a href="/workflows" class="nav-link nav-text">vRO Workflow List</a>
</div>
</header>
<body>
{% block body %}{% endblock %}
</body>
</html>