This is all the code after a week and a bit hacking on this project. It's in a rather experimental state but should work with a little effort.
12 lines
285 B
HTML
12 lines
285 B
HTML
{% extends 'layout.html' %}
|
|
{% block row_fluid %}
|
|
<div class="container" style="margin-bottom:55px;">
|
|
<div class="row">
|
|
<div class="span12">
|
|
<h2>Not Found</h2>
|
|
<p>What you were looking for could not be found in PuppetDB.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|