diff options
author | Simon McVittie <smcv@debian.org> | 2014-09-15 23:12:53 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2014-09-15 23:12:53 +0100 |
commit | 3ed83401540ee0bbc42d8c7065856eb6bb8b1de5 (patch) | |
tree | 14424751686cf09a90be2bc9cad892362f4d59f6 | |
parent | 5ff68d517165b0b24a01d4624be1ba2e4dff336f (diff) | |
download | ikiwiki-3ed83401540ee0bbc42d8c7065856eb6bb8b1de5.tar ikiwiki-3ed83401540ee0bbc42d8c7065856eb6bb8b1de5.tar.gz |
Revert "Use templatebody for the templates in the basewiki and docwiki"
This reverts commit 236c46a3f7e5e62296484dc47b4882f7f4327a06.
We can't apply this bit until the ikiwiki on ikiwiki.info
(i.e. Branchable) supports [[!templatebody]].
-rw-r--r-- | doc/templates/gitbranch.mdwn | 5 | ||||
-rw-r--r-- | doc/templates/links.mdwn | 4 | ||||
-rw-r--r-- | doc/templates/note.mdwn | 5 | ||||
-rw-r--r-- | doc/templates/plugin.mdwn | 5 | ||||
-rw-r--r-- | doc/templates/popup.mdwn | 5 |
5 files changed, 8 insertions, 16 deletions
diff --git a/doc/templates/gitbranch.mdwn b/doc/templates/gitbranch.mdwn index 4ea73c91b..853da9280 100644 --- a/doc/templates/gitbranch.mdwn +++ b/doc/templates/gitbranch.mdwn @@ -1,11 +1,9 @@ -[[!templatebody <<ENDBODY <div class="infobox"> Available in a [[!taglink /git]] repository [[!taglink branch|/branches]].<br /> Branch: <TMPL_IF browse><a href="<TMPL_VAR browse>"></TMPL_IF><TMPL_VAR branch><TMPL_IF browse></a></TMPL_IF><br /> <TMPL_IF author>Author: <TMPL_VAR author><br /></TMPL_IF> </div> -ENDBODY]] - +<TMPL_UNLESS branch> This template is used to create an infobox for a git branch. It uses these parameters: @@ -15,3 +13,4 @@ these parameters: (e.g. github/master)</li> <li>author - the author of the branch</li> </ul> +</TMPL_UNLESS> diff --git a/doc/templates/links.mdwn b/doc/templates/links.mdwn index 3239a59c2..4bd1a85bf 100644 --- a/doc/templates/links.mdwn +++ b/doc/templates/links.mdwn @@ -1,4 +1,3 @@ -[[!templatebody <<ENDBODY <div class="infobox"> [[ikiwiki_logo|logo/ikiwiki.png]] <ul> @@ -15,6 +14,3 @@ <img src="https://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" /></a> </div> -ENDBODY]] - -This template contains the navigation links used on the front page. diff --git a/doc/templates/note.mdwn b/doc/templates/note.mdwn index 8de7374bc..9ef5ad942 100644 --- a/doc/templates/note.mdwn +++ b/doc/templates/note.mdwn @@ -1,12 +1,11 @@ -[[!templatebody <<ENDBODY <div class="notebox"> <TMPL_VAR text> </div> -ENDBODY]] - +<TMPL_UNLESS text> Use this template to insert a note into a page. The note will be styled to float to the right of other text on the page. This template has one parameter: <ul> <li>`text` - the text to display in the note </ul> +</TMPL_UNLESS> diff --git a/doc/templates/plugin.mdwn b/doc/templates/plugin.mdwn index d36dd5f85..322c49445 100644 --- a/doc/templates/plugin.mdwn +++ b/doc/templates/plugin.mdwn @@ -1,4 +1,3 @@ -[[!templatebody <<ENDBODY <span class="infobox"> Plugin: <TMPL_VAR name><br /> Author: <TMPL_VAR author><br /> @@ -9,8 +8,7 @@ Currently enabled: [[!if test="enabled(<TMPL_VAR name>)" then="yes" else="no"]]< </span> [[!if test="sourcepage(plugins/contrib/*)" then="""[[!meta title="<TMPL_VAR name> (third party plugin)"]]"""]] <TMPL_IF core>[[!tag plugins/type/core]]</TMPL_IF> -ENDBODY]] - +<TMPL_UNLESS name> This template is used to create an infobox for an ikiwiki plugin. It uses these parameters: <ul> @@ -18,3 +16,4 @@ these parameters: <li>author - the author of the plugin <li>core - set to a true value if the plugin is enabled by default </ul> +</TMPL_UNLESS> diff --git a/doc/templates/popup.mdwn b/doc/templates/popup.mdwn index b721a95f9..92455eb21 100644 --- a/doc/templates/popup.mdwn +++ b/doc/templates/popup.mdwn @@ -1,3 +1,4 @@ +<TMPL_UNLESS mouseover> Use this template to create a popup window that is displayed when the mouse is over part of the page. This template has two parameters: <ul> @@ -9,9 +10,7 @@ large for good usability. </ul> Note that browsers that do not support the CSS will display the popup inline in the page, inside square brackets. - -[[templatebody <<ENDBODY +</TMPL_UNLESS> <span class="popup"><TMPL_VAR mouseover> <span class="paren">[</span><span class="balloon"><TMPL_VAR popup></span><span class="paren">]</span> </span> -ENDBODY]] |