]> sipb.mit.edu Git - ikiwiki.git/blob - doc/ikiwiki/directive/template.mdwn
Merge branch 'master' into templatemove
[ikiwiki.git] / doc / ikiwiki / directive / template.mdwn
1 The `template` directive is supplied by the [[!iki plugins/template desc=template]] plugin.
2
3 The template directive allows wiki pages to be used as templates.
4 These templates can be filled out and inserted into other pages in the
5 wiki using the directive. The [[templates]] page lists templates
6 that can be used with this directive.
7
8 The directive has an `id` parameter
9 that identifies the template to use. The remaining parameters are used to
10 fill out the template.
11
12 ## Example
13
14         \[[!template id=note text="""Here is the text to insert into my note."""]]
15
16 This fills out the `note` template, filling in the `text` field with
17 the specified value, and inserts the result into the page.
18
19 ## Using a template
20
21 Generally, a value can include any markup that would be allowed in the wiki
22 page outside the template. Triple-quoting the value even allows quotes to
23 be included in it. Combined with multi-line quoted values, this allows for
24 large chunks of marked up text to be embedded into a template:
25
26         \[[!template id=foo name="Sally" color="green" age=8 notes="""
27         * \[[Charley]]'s sister.
28         * "I want to be an astronaut when I grow up."
29         * Really 8 and a half.
30         """]]
31
32 ## Creating a template
33
34 The template is a regular wiki page, located in the `templates/`
35 subdirectory inside the source directory of the wiki.
36
37 (Alternatively, templates can be stored in a directory outside the wiki,
38 as files with the extension ".tmpl".
39 By default, these are searched for in `/usr/share/ikiwiki/templates`;
40 the `templatedir` setting can be used to make another directory be searched
41 first.)
42
43 The template uses the syntax used by the [[!cpan HTML::Template]] perl
44 module, which allows for some fairly complex things to be done. Consult its
45 documentation for the full syntax, but all you really need to know are a
46 few things:
47
48 * Each parameter you pass to the template directive will generate a 
49   template variable. There are also some pre-defined variables like PAGE
50   and BASENAME.
51 * To insert the value of a variable, use `<TMPL_VAR variable>`. Wiki markup
52   in the value will first be converted to html.
53 * To insert the raw value of a variable, with wiki markup not yet converted
54   to html, use `<TMPL_VAR raw_variable>`.
55 * To make a block of text conditional on a variable being set use
56   `<TMPL_IF NAME="variable">text</TMPL_IF>`.
57 * To use one block of text if a variable is set and a second if it's not,
58   use `<TMPL_IF NAME="variable">text<TMPL_ELSE>other text</TMPL_IF>`
59
60 Here's a sample template:
61
62         <span class="infobox">
63         Name: \[[<TMPL_VAR raw_name>]]<br />
64         Age: <TMPL_VAR age><br />
65         <TMPL_IF NAME="color">
66         Favorite color: <TMPL_VAR color><br />
67         <TMPL_ELSE>
68         No favorite color.<br />
69         </TMPL_IF>
70         <TMPL_IF NAME="notes">
71         <hr />
72         <TMPL_VAR notes>
73         </TMPL_IF>
74         </span>
75
76 The filled out template will be formatted the same as the rest of the page
77 that contains it, so you can include WikiLinks and all other forms of wiki
78 markup in the template. Note though that such WikiLinks will not show up as
79 backlinks to the page that uses the template.
80
81 Note the use of "raw_name" inside the [[ikiwiki/WikiLink]] generator in the
82 example above. This ensures that if the name contains something that might
83 be mistaken for wiki markup, it's not converted to html before being
84 processed as a [[ikiwiki/WikiLink]].
85
86
87 [[!meta robots="noindex, follow"]]