
Ignore-this: d0485c9ec2225694207cef0b5b733a08 darcs-hash:20120212223013-28565-3bd4cb29bcee856ac8ab038d7b4e672e73f19914.gz
17 lines
492 B
Cheetah
17 lines
492 B
Cheetah
#encoding:utf-8
|
|
<div class="framed_gray">
|
|
#for a_category in $modules
|
|
<fieldset>
|
|
<legend>$a_category</legend>
|
|
<ul>
|
|
#for a_module_name in $modules[a_category]
|
|
#set the_module = $modules[a_category][a_module_name]
|
|
<li><a href="$the_module.url">
|
|
<img src="$the_module.icon" alt="icon" />
|
|
<span>$the_module.name</span>
|
|
</a></li>
|
|
#end for
|
|
</ul>
|
|
</fieldset>
|
|
#end for
|
|
</div>
|