src/cm/templates/site/layout/base_text.html
changeset 0 40c8f766c9b8
child 61 84837aa8d2ca
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/templates/site/layout/base_text.html	Mon Nov 23 15:14:29 2009 +0100
@@ -0,0 +1,26 @@
+{% extends "site/layout/base.html" %}
+{% load com %}
+{% load i18n %}
+
+{% block title %}
+{{ text.get_title }}
+{% endblock %}
+
+{% block head_base %}
+<script type="text/javascript" src="{% url django.views.i18n.javascript_catalog %}"></script>
+<link href="{% url text-feed text.key %}" title="{{ text.get_title }}" type="application/rss+xml" rel="alternate" />
+{% endblock %}
+
+{% block content %}
+
+{%  include "site/macros/text_actions.html" %}
+<a class="breadcrumbs" href="{% url index %}" title="Home">&laquo; {% blocktrans %}back to workspace{% endblocktrans %}</a>
+<h1 class="main_title_text"><a class="title" href="{% url text-view text.key %}">{{ text.get_title }}</a></h1>
+
+{% include "site/macros/text_meta.html" %}   
+{% include "site/macros/text_tabs.html" %}   
+
+{% block main %}
+{% endblock %}
+
+{% endblock %}