-
-
Notifications
You must be signed in to change notification settings - Fork 814
Expand file tree
/
Copy path404.html
More file actions
21 lines (20 loc) · 702 Bytes
/
404.html
File metadata and controls
21 lines (20 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "layout.html" %}
{% from "macros/breadcrumbs.html" import breadcrumbs with context %}
{% from "macros/incomplete.html" import incomplete with context %}
{% block title %}Page not found{% endblock %}
{% block preamble %}
<div class="banner">
<div class="container">
<h1>404: Page not found</h1>
</div>
</div>
{% endblock %}
{% block body %}
<div class="row-fluid">
<div class="col-md-12">
<img src="/static/images/bumble.png" class="img-fluid center-block hidden-sm-down">
<img src="/static/images/bumble-small.png" class="img-fluid center-block hidden-md-up">
<h2 style="text-align:center">Brutus can't find what you're looking for</h2>
</div>
</div>
{% endblock %}