-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.twig
36 lines (28 loc) · 1.07 KB
/
404.twig
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
{% extends "default.twig" %}
{% block content %}
<section class='section-wrapper not-found-w'>
<div class='container'>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>
<i class="fa fa-exclamation-triangle"></i>
Page not found
</h1>
<p>
Sorry the page you requested may have been moved or deleted :(
</p>
<p>
<a href="{{ baseUrl }}/" class="btn btn-default btn-lg">
<i class='fa fa-home'></i>
Go to the homepage
</a>
<a href="{{ baseUrl }}/doc" class="btn btn-default btn-lg">
<i class='fa fa-book'></i>
Go to the documentation index
</a>
</p>
</div>
</div>
</div>
</section>
{% endblock %}