review how sattic files are kept
[myslice.git] / slice / templates / foo-menu.html
1 {% insert_str prelude "js/mymenu.js" %}
2 {% insert_str prelude "css/mymenu.css" %}
3 {# this shows how to add raw js code #}
4 {% insert raw_js %} "some script useful for mymenu" {% endinsert %}
5 {# use the raw_css container for css style #}
6
7 <ul id='mymenu'>
8 {% for d in menu_items %}
9   <li class='other'> <a href="{{ d.href }}"> {{ d.label }} </a> </li>
10 {% endfor %}
11 </ul>
12