README update for latest SDK; misc small cleanup
[gae-samples.git] / cccwiki / templates / view.html
blob332302ee54aca931b94c4e724b00b15488105c1a
1 {% extends "base.html" %}
3 {% block title %}{{ application_name }} - {{ page.name|escape }}{% endblock %}
5 {% block head %}
6 <style type="text/css">
8 #body a[href ^="http"] {
9 color: #36b;
10 background: url(/static/images/external.png) center right no-repeat;
11 padding-right: 13px;
14 #body h1 a.wikiword, #body h1 a.wikiword:visited {
15 color: black;
16 text-decoration: none;
19 </style>
20 {% endblock %}
22 {% block buttons %}<span class="item"><input type="button" onclick="location.href='{{ page.edit_url|escape }}'" value="Edit This Page"/></span>{% endblock %}
24 {% block body %}
25 {{ page.wikified_content }}
26 {% endblock %}