plugin
upstream
Templates in the website are disabled now. Editing them will not have any effect on the live website.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$def with (page)
<div id="editHead">
<h2>
$page.title
$page.description
</h2>
$ author = get_recent_author(page)
$if author:
<p>$_("This doc was last edited by") <a href="$author.key" rel="nofollow">$author.displayname</a> $(page.last_modified and datestr(page.last_modified)).</p>
$else:
<p>$_("This doc was last edited anonymously") $(page.last_modified and datestr(page.last_modified)).</p>
</div> |