]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/wiki/404.html
9fc12c04858fb2691747e9861f53a4a9f738e431
[ipfire.org.git] / src / templates / wiki / 404.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Page Not Found") }}{% end block %}
4
5 {% block container %}
6 <section>
7 <div class="container">
8 <div class="row justify-content-center mt-5">
9 <div class="col col-md-7">
10 <h5 class="mb-0">{{ _("Error 404") }}</h5>
11
12 <h2>{{ _("This Page Does Not Exist") }}</h2>
13
14 <p>
15 {{ _("This wiki page does not exist, yet.") }}
16 </p>
17
18 <a class="btn btn-primary btn-block" href="/actions/edit/{{ request.path }}">
19 {{ _("Create Now") }}
20 </a>
21 </div>
22 </div>
23 </div>
24 </section>
25 {% end block %}