Import SRE inventory code

This commit is contained in:
Daniel Parks 2017-09-11 18:02:43 -07:00
commit 7364ccbff8
No known key found for this signature in database
GPG key ID: 7335138B2B9829EB
18 changed files with 5348 additions and 0 deletions

28
templates/layout.html Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{{ path }}../static/general.css">
<link rel="stylesheet" href="{{ path }}pygments.css">
<script src="{{ path }}../static/moment.js" defer></script>
<script src="{{ path }}../static/general.js" defer></script>
</head>
<body id="{{ body_id }}">
<nav>
<ul>
<li><a href="{{ path }}index.html" class="backward">Home</a></li>
<li><a href="{{ path }}nodes/index.html">Nodes</a></li>
<li><a href="{{ path }}roles/index.html">Roles</a></li>
<li><a href="{{ path }}services/index.html">Services</a></li>
</ul>
</nav>
<main>
{% block body %}{% endblock %}
</main>
<footer>
{% block footer %}{% endblock %}
<div id="generated-at">{{ generation_time }}</div>
</footer>
</body>
</html>