Fixed servefiles urls
[bcms.git] / templates / view.html
blob8b73370f6216a6936687225c3d33747b7e0a5865
1 {% extends "master.html" %}
3 {% block title %}
4 {{ title }}
5 {% endblock title %}
7 {% block content %}
9 <h1>{{ title }}</h1>
10 {% if user.is_authenticated %}
11 <a href="/{{ lang }}/{{ pagename }}/edit">Edit</a>
12 {% endif %}
13 <hr />
15 {{ contents|safe }}
17 {% endblock content %}