diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-05 10:04:38 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-05 10:04:38 -0400 |
commit | 395ca7ae56fe177d1637e2a5491273dfe427585f (patch) | |
tree | 8745deceb4e5fd213b44ec55a38181037dd54277 /templates | |
parent | 00188c087db37fd01e19dbeb07b13924f60b76cb (diff) | |
download | ikiwiki-395ca7ae56fe177d1637e2a5491273dfe427585f.tar ikiwiki-395ca7ae56fe177d1637e2a5491273dfe427585f.tar.gz |
aggregate: Improve display of post author.
The recent move of the post author to the author field is good, but with
it coming after the name of the feed, it is unlikely to be visible when
viewed in eg mutt. Move it to before the feed name.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/aggregatepost.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/aggregatepost.tmpl b/templates/aggregatepost.tmpl index a89ccfcdf..5a0f6e780 100644 --- a/templates/aggregatepost.tmpl +++ b/templates/aggregatepost.tmpl @@ -12,7 +12,7 @@ [[!meta copyright="<TMPL_VAR COPYRIGHT ESCAPE=HTML>"]] </TMPL_IF> <TMPL_IF AUTHOR> -[[!meta author="<TMPL_VAR NAME ESCAPE=HTML>: <TMPL_VAR AUTHOR ESCAPE=HTML>"]] +[[!meta author="<TMPL_VAR AUTHOR ESCAPE=HTML> (<TMPL_VAR NAME ESCAPE=HTML>)"]] <TMPL_ELSE> [[!meta author="<TMPL_VAR NAME ESCAPE=HTML>"]] </TMPL_IF> |