diff options
Diffstat (limited to 'doc/templates/temp_list.html')
-rw-r--r-- | doc/templates/temp_list.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/templates/temp_list.html b/doc/templates/temp_list.html new file mode 100644 index 000000000..9d635d870 --- /dev/null +++ b/doc/templates/temp_list.html @@ -0,0 +1,33 @@ +<h3>Master template index:</h3> + +[[for temp in templates]] +<div id="templatesmall"> +Module: <a href='[[temp['mod_layer']+ "_" + temp['mod_name'] + ".html#link_" + temp['template_name']]]'> +[[temp['mod_name']]]</a><p/> +Layer: <a href='[[temp['mod_layer']]].html'> +[[temp['mod_layer']]]</a><p/> +<div id="codeblock"> +[[exec i = 0]] +<b>[[temp['template_name']]]</b>( + [[for arg in temp['template_parameters']]] + [[if i != 0]] + , + [[end]] + [[exec i = 1]] + [[if arg['optional'] == 'yes']] + [ + [[end]] + [[arg['name']]] + [[if arg['optional'] == 'yes']] + ] + [[end]] + [[end]] + )<br> +</div> +[[if temp['template_summary']]] +<div id="description"> +[[temp['template_summary']]] +</div> +[[end]] +</div> +[[end]] |