aboutsummaryrefslogtreecommitdiffstats
path: root/examples/bench/cheetah/template.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bench/cheetah/template.tmpl')
-rw-r--r--examples/bench/cheetah/template.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bench/cheetah/template.tmpl b/examples/bench/cheetah/template.tmpl
index a0b5593..c7cf1e4 100644
--- a/examples/bench/cheetah/template.tmpl
+++ b/examples/bench/cheetah/template.tmpl
@@ -21,7 +21,7 @@
#if $list_items
<ul>
#for $list_item in $list_items
- <li>$list_item</li>
+ <li #if $list_item is $list_items[-1] then "class='last'" else ""#>$list_item</li>
#end for
</ul>
#end if