]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - 1.33.2/IkiWiki/Plugin/favicon.pm
tagging version 1.33.2
[git.ikiwiki.info.git] / 1.33.2 / IkiWiki / Plugin / favicon.pm
1 #!/usr/bin/perl
2 # favicon plugin.
4 package IkiWiki::Plugin::favicon;
6 use warnings;
7 use strict;
8 use IkiWiki;
10 sub import { #{{{
11         hook(type => "pagetemplate", id => "favicon", call => \&pagetemplate);
12 } # }}}
14 sub pagetemplate (@) { #{{{
15         my %params=@_;
17         my $template=$params{template};
18         
19         if ($template->query(name => "favicon")) {
20                 $template->param(favicon => "favicon.ico");
21         }
22 } # }}}
24 1