mirror of
https://github.com/puppetlabs/infinitory.git
synced 2026-01-26 02:08:41 -05:00
Import SRE inventory code
This commit is contained in:
commit
7364ccbff8
18 changed files with 5348 additions and 0 deletions
28
templates/layout.html
Normal file
28
templates/layout.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue