aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyenc/templates/base.html')
-rw-r--r--pyenc/templates/base.html17
1 files changed, 15 insertions, 2 deletions
diff --git a/pyenc/templates/base.html b/pyenc/templates/base.html
index 9256734..64e35d6 100644
--- a/pyenc/templates/base.html
+++ b/pyenc/templates/base.html
@@ -4,9 +4,10 @@
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, intial-scale=1"/>
+ <link rel="icon" href="{{ url_for('static', filename='icon.svg') }}"/>
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet"/>
- <script type="module" src="{{ url_for('static', filename='js/script.js') }}"></script>
- <title>Puppet Node Classifier</title>
+ <!-- <script type="module" src="{{ url_for('static', filename='js/script.js') }}"></script> -->
+ <title>Puppet Classifier</title>
</head>
<body>
<div id="flash">
@@ -20,6 +21,18 @@
{% endif %}
{% endwith %}
</div>
+ <nav>
+ <img src="{{ url_for('static', filename='icon.svg') }}"/>
+ <ul>
+ <li><a href="/host">Hosts</a>
+ <li><a href="/environment">Environments</a>
+ <li><a href="/class">Classes</a>
+ </ul>
+ <hr/>
+ <ul>
+ <li><a href="#">Source</a>
+ </ul>
+ </nav>
<main>
{% block content %}
{% endblock %}