]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/docs/404.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / docs / 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 class="hero is-light is-fullheight-with-navbar">
9 <div class="hero-body">
10 <div class="container">
11 <h5 class="title is-5">
12 {{ _("Error 404") }}
13 </h5>
14 <h2 class="title is-2">
15 {{ _("This Page Does Not Exist") }}
16 </h2>
17
18 <a class="button is-primary" href="{{ os.path.join(request.path, "_edit") }}">
19 {{ _("Create Now") }}
20 </a>
21 </div>
22 </div>
23 </section>
24 {% end block %}