inline: Add author info to archive display.

This won't change it normally, and is useful if using archive
format to display some aggregated feed titles.
master
Joey Hess 2009-04-10 21:44:37 -04:00
parent e0d1e84b8d
commit a25d8f992b
2 changed files with 10 additions and 1 deletions

1
debian/changelog vendored
View File

@ -11,6 +11,7 @@ ikiwiki (3.10) UNRELEASED; urgency=low
* Add missing newline to Confirm Password prompt.
* Add missing permalink support to archivepage and titlepage templates.
* debian/control: Wrap fields.
* inline: Add author info to archive display.
-- Joey Hess <joeyh@debian.org> Sat, 04 Apr 2009 17:47:36 -0400

View File

@ -6,6 +6,14 @@
</TMPL_IF>
<i>
Posted <TMPL_VAR CTIME>
<TMPL_IF NAME="AUTHOR">
by <span class="author">
<TMPL_IF NAME="AUTHORURL">
<a href="<TMPL_VAR AUTHORURL>"><TMPL_VAR AUTHOR></a>
<TMPL_ELSE>
<TMPL_VAR AUTHOR>
</TMPL_IF>
</span>
</TMPL_IF>
</i>
</p>