|
0
|
1 |
{% extends "site/layout/base.html" %} |
|
|
2 |
{% load com %} |
|
|
3 |
{% load i18n %} |
|
|
4 |
|
|
|
5 |
{% block title %} |
|
|
6 |
{{ text.get_title }} |
|
|
7 |
{% endblock %} |
|
|
8 |
|
|
|
9 |
{% block head_base %} |
|
|
10 |
<script type="text/javascript" src="{% url django.views.i18n.javascript_catalog %}"></script> |
|
|
11 |
<link href="{% url text-feed text.key %}" title="{{ text.get_title }}" type="application/rss+xml" rel="alternate" /> |
|
|
12 |
{% endblock %} |
|
|
13 |
|
|
61
|
14 |
{% block breadcrumbs %} |
|
|
15 |
<span id="header_left"> |
|
|
16 |
<a class="breadcrumbs" href="{% url index %}" title="Home">« {% blocktrans %}back to workspace{% endblocktrans %}</a> |
|
|
17 |
</span> |
|
|
18 |
{% endblock %} |
|
|
19 |
|
|
0
|
20 |
{% block content %} |
|
|
21 |
|
|
|
22 |
{% include "site/macros/text_actions.html" %} |
|
541
|
23 |
<h1 class="main_title_text"> |
|
|
24 |
{% if CONF.f_get_logo_url %}<div><a title="{% blocktrans %}back to workspace{% endblocktrans %}" alt="logo" class="title" href="{% url index %}"><img src="{{ CONF.f_get_logo_url }}" alt="logo" /></a></div>{% endif %} |
|
|
25 |
<a class="title" href="{% url text-view text.key %}">{{ text.get_title }}</a> |
|
|
26 |
</h1> |
|
0
|
27 |
|
|
|
28 |
{% include "site/macros/text_meta.html" %} |
|
|
29 |
{% include "site/macros/text_tabs.html" %} |
|
|
30 |
|
|
|
31 |
{% block main %} |
|
|
32 |
{% endblock %} |
|
|
33 |
|
|
|
34 |
{% endblock %} |