File: missing-page.html

package info (click to toggle)
python-wikkid 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 728 kB
  • sloc: python: 3,051; makefile: 12
file content (23 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}
{% block title %}{{ view.title }}{% endblock %}
{% block content %}

<p>The page you are looking for isn't here.<p>

<p><a href="{{ canonical_url(context, 'edit') }}">
  Create a new page: {{ view.title }}
</a></p>

<p><a href="{{ canonical_url(context.root_resource, 'listing') }}">
  Browse the wiki content
</a></p>

{% endblock %}
{% block commands %}
{% if view.user %}
<a href="{{ canonical_url(context, 'edit') }}">Edit</a>
{% endif %}
{% if context.get_dir_name %}
<a class="command" href="{{ canonical_url(context.root_resource, 'listing') }}">Browse</a>
{% endif %}
{% endblock %}