aboutsummaryrefslogtreecommitdiff
blob: 9d635d870f1870df0fc250c0ce6f166e3ec9515c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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]]