]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/wiki/404.html
wiki: Fix editing the index page
[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 {% import os.path %}
7
8 <section>
9 <div class="container">
10 <div class="row justify-content-center mt-5">
11 <div class="col col-md-7">
12 <h5 class="mb-0">{{ _("Error 404") }}</h5>
13
14 <h2>{{ _("This Page Does Not Exist") }}</h2>
15
16 <p>
17 {{ _("This wiki page does not exist, yet.") }}
18 </p>
19
20 <a class="btn btn-primary btn-block" href="{{ os.path.join(request.path, "_edit") }}">
21 {{ _("Create Now") }}
22 </a>
23 </div>
24 </div>
25 </div>
26 </section>
27 {% end block %}