16 lines
560 B
HTML
16 lines
560 B
HTML
##This file is based on the template from the SimpleWiki source which carries the GPL license
|
||
|
||
<%inherit file="simplewiki_base.html"/>
|
||
|
||
<%block name="title"><title>${wiki_title + " - " if wiki_title is not UNDEFINED else ""}Wiki – MITx 6.002x</title></%block>
|
||
|
||
<%block name="wiki_page_title">
|
||
<h1>${ wiki_article.title } ${'<span style="color: red;">- Deleted Revision!</span>' if wiki_current_revision_deleted else ''}</h1>
|
||
</%block>
|
||
|
||
<%block name="wiki_body">
|
||
<div id="wiki_article">
|
||
${ wiki_article_revision.contents_parsed| n}
|
||
</div>
|
||
</%block>
|