-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
91 lines (90 loc) · 5.14 KB
/
layout.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Language" content="en-us">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1.0, user-scalable=yes, width=device-width">
<meta http-equiv="imagetoolbar" content="no">
<meta name="robots" content="noindex">
<title>{% block title %}OpenStack browser{% endblock %}</title>
<link rel="stylesheet" href="https://tools-static.wmflabs.org/cdnjs/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://tools-static.wmflabs.org/cdnjs/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='site.css') }}">
{% block css %}{% endblock %}
</head>
<body>
{% block navbar %}
<nav class="navbar navbar-default navbar-static-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{{ url_for('home') }}">OpenStack browser</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="{% if request.url_rule.endpoint == 'home' %}active{% endif %}"><a href="{{ url_for('home') }}"><span class="glyphicon glyphicon-home"></span> Home</a></li>
{% with projects = url_for('projects') %}
<li class="{% if request.base_url|contains(projects) %}active{% endif %}"><a href="{{ projects }}"><span class="glyphicon glyphicon-cloud"></span> Projects</a></li>
{% endwith %}
{% with servers = url_for('servers') %}
<li class="{% if request.base_url|contains(servers) %}active{% endif %}"><a href="{{ servers }}"><span class="glyphicon glyphicon-tasks"></span> Servers</a></li>
{% endwith %}
<li class="{% if request.url_rule.endpoint == 'all_proxies' %}active{% endif %}"><a href="{{ url_for('all_proxies') }}"><span class="glyphicon glyphicon-random"></span> Proxies</a></li>
{% with classes = url_for('all_puppetclasses') %}
<li class="{% if request.base_url|contains(classes) %}active{% endif %}"><a href="{{ classes }}"><span class="glyphicon glyphicon-wrench"></span> Puppet Classes</a></li>
{% endwith %}
{% with networks = url_for('networks') %}
<li class="{% if request.base_url|contains(networks) %}active{% endif %}"><a href="{{ networks }}"><span class="glyphicon glyphicon-signal"></span> Networks</a></li>
{% endwith %}
</ul>
<ul class="nav navbar-nav navbar-right">
{% block navright %}{% endblock %}
</ul>
</div>
</div>
</nav>
{% endblock %}
{% block banner %}{% endblock banner %}
<div id="content" class="container-fluid">
{% block pre_content %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{category}} alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
{{ message }}
</div>
{% endfor %}
{% endif %}
{% endwith %}
{% endblock %}
{% block content %}{% endblock %}
{% block post_content %}{% endblock post_content %}
</div>
<footer class="footer" role="contentinfo">
<div class="container">
<div class="row"><hr></div>
<div class="row">
<div class="col-xs-6">
<img src="https://tools-static.wmflabs.org/static/logos/powered-by-tool-labs.png" alt="Powered by Wikimedia Toolforge">
</div>
<div class="col-xs-6 text-muted text-right">
<a id="source" href="https://gitlab.wikimedia.org/toolforge-repos/openstack-browser">view source</a>
<a id="issues" href="https://phabricator.wikimedia.org/tag/tool-openstack-browser/">report issues</a>
</div>
</div>
</div>
</footer>
{% block js %}
<script src="https://tools-static.wmflabs.org/cdnjs/ajax/libs/jquery/3.1.1/jquery.min.js" crossorigin="anonymous"></script>
<script src="https://tools-static.wmflabs.org/cdnjs/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
{% endblock %}
</body>
</html>