Fix github security audits
[herouter.git] / templates / snap.html
blobe1295c4c3214222f053b28835a97047e66f1c2d1
1 {% extends "base.html" %}
2 {% block title %}Hub Dash{% endblock %}
3 {% block head %}
4 {{ super() }}
5 <link href="/static/css/extra.css" rel="stylesheet" />
6 {% endblock %}
7 {% block top_navigation %}
8 {% endblock %}
9 {% block brand %}
10 <a class="brand" href="#">Hub</a>
11 {% endblock %}
12 {% block content %}
13 <header class="jumbotron subhead">
14 <h1>Oh snap!</h1>
15 <p class="lead">You don't have to go home but you can't stay here.</p>
16 </header>
17 <div class="row">
18 <div class="span6">
19 <h3>So what happened?</h3>
20 <p>
21 You landed on this page by trying to browse to <strong>{{ hostname }}/{{ uri }}</strong>.
22 This means that {{ hostname }} points to Herouter Hub which should redirect you to the place you were looking for.
23 That is in case it was configured properly.
24 </p>
25 <p>
26 Somebody messed up.
27 </p>
28 </div>
29 <div class="span6">
30 <h3>What's this Hub all about?</h3>
31 <p>
32 The Herouter is a part of a larger configuration management
33 suite. It is designed to provide easy deployment of services
34 over a combination of several cloud platforms.
35 </p>
36 </div>
37 </div>
38 {% endblock %}