aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-04 00:47:28 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-04 00:47:28 +0000
commit819b31d46c05c00d4183f824f74bfe3836471d78 (patch)
treeb309d4683352a64c339bb572505635ba154000e8 /IkiWiki
parentc5919df5f3697e0f8968e2b8f49cd15c1e0aa412 (diff)
downloadikiwiki-819b31d46c05c00d4183f824f74bfe3836471d78.tar
ikiwiki-819b31d46c05c00d4183f824f74bfe3836471d78.tar.gz
* Various CSS and formatting changes.
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/meta.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm
index b6226ed88..adfd688a6 100644
--- a/IkiWiki/Plugin/meta.pm
+++ b/IkiWiki/Plugin/meta.pm
@@ -10,6 +10,7 @@ my %meta;
my %title;
my %permalink;
my %author;
+my %authorurl;
sub import { #{{{
IkiWiki::hook(type => "preprocess", id => "meta",
@@ -68,6 +69,9 @@ sub preprocess (@) { #{{{
if ($key eq 'author') {
$author{$page}=$value;
}
+ elsif ($key eq 'authorurl') {
+ $authorurl{$page}=$value;
+ }
}
return "";
@@ -86,6 +90,8 @@ sub pagetemplate (@) { #{{{
if exists $permalink{$page} && $template->query(name => "permalink");
$template->param(author => $author{$page})
if exists $author{$page} && $template->query(name => "author");
+ $template->param(authorurl => $authorurl{$page})
+ if exists $authorurl{$page} && $template->query(name => "authorurl");
} # }}}