aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-12 17:51:32 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-12 17:51:32 +0000
commitd39717a1cb395a45bb794c8141f1ef29f9a00705 (patch)
tree5901b846401c54dd51e1347a308148c4e5e01e23 /IkiWiki
parent0fd3ec8068d866b1cb87abca5d4534da7818d413 (diff)
downloadikiwiki-d39717a1cb395a45bb794c8141f1ef29f9a00705.tar
ikiwiki-d39717a1cb395a45bb794c8141f1ef29f9a00705.tar.gz
* If the meta plugin overides the page title, set a title_overridden
variable in the template to true. This allows doing things with the templates conditional on the title being overriden.
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/meta.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm
index 0890830a7..9b026fffa 100644
--- a/IkiWiki/Plugin/meta.pm
+++ b/IkiWiki/Plugin/meta.pm
@@ -85,8 +85,10 @@ sub pagetemplate (@) { #{{{
$template->param(meta => $meta{$page})
if exists $meta{$page} && $template->query(name => "meta");
- $template->param(title => $title{$page})
- if exists $title{$page} && $template->query(name => "title");
+ if (exists $title{$page} && $template->query(name => "title")) {
+ $template->param(title => $title{$page});
+ $template->param(title_overridden => 1);
+ }
$template->param(permalink => $permalink{$page})
if exists $permalink{$page} && $template->query(name => "permalink");
$template->param(author => $author{$page})