consistently drop NAME= in templates
[ikiwiki.git] / doc / templates.mdwn
index 2444cf14d42acc88cd28a44772d7adc6358cf491..8f6561fcf3fff334dacbf928006bd8d75b8d75be 100644 (file)
@@ -12,9 +12,9 @@ easy to learn. All you really need to know to modify templates is this:
 
 * To insert the value of a template variable, use `<TMPL_VAR variable>`.
 * To make a block of text conditional on a variable being set use
-  `<TMPL_IF NAME="variable">text</TMPL_IF>`.
+  `<TMPL_IF variable>text</TMPL_IF>`.
 * To use one block of text if a variable is set and a second if it's not,
-  use `<TMPL_IF NAME="variable">text<TMPL_ELSE>other text</TMPL_IF>`
+  use `<TMPL_IF variable>text<TMPL_ELSE>other text</TMPL_IF>`
 
 [[!if test="enabled(template)" then="""
 ## template pages