forked from fossasia/meilix-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
42 lines (32 loc) · 1022 Bytes
/
404.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
{% extends "layout.html" %}
{% block title %}
Page not found
{% endblock %}
{% block main %}
<div class="container">
<div class="row">
<div class="col s12" style="padding-top: 150px;">
<h1 class="center-align" id="head"><a href="{{ url_for('index') }}"> meilix-generator</a></h1>
</div>
</div>
<div class="row">
<div class="col s2"></div>
<div class="col s8">
<div class="row">
<div class="col s12">
<div class="card hoverable">
<div class="card-content">
<h3 class="center-align"> Error 404! </h3>
<p class="center-align"> Page not found</p>
</div>
<div class="card-action center-align">
Go to <a class="btn btn-floating cyan pulse" href="{{ url_for('index') }}"><i class="material-icons">home</i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col s2"></div>
</div>
</div>
{% endblock %}