aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/templates/loop_size.html
blob: f1938441df5e5c3ef9d58f7b33bcf1bfaa97d935 (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
34
35
36
37
38
39
<!-- IF .nonexistent_loop -->
	nonexistent
<!-- ENDIF -->

<!-- IF .nonexistent_loop == 0 -->
	nonexistent = 0
<!-- ENDIF -->

<!-- IF ! .nonexistent_loop -->
	! nonexistent
<!-- ENDIF -->

<!-- IF .empty_loop -->
	empty
<!-- ENDIF -->

<!-- IF .empty_loop == 0 -->
	empty = 0
<!-- ENDIF -->

<!-- IF ! .empty_loop -->
	! empty
<!-- ENDIF -->

<!-- IF .loop -->
	loop
<!-- ENDIF -->

<!-- IF .loop == 0 -->
	loop = 0
<!-- ENDIF -->

<!-- IF ! .loop -->
	! loop
<!-- ENDIF -->

<!-- BEGIN loop -->
	in loop
<!-- END -->