36d096c7e1275117e62eac022bf9431c056808ca
[myslice.git] / slice / templates / foo-menu.html
1 {% insert_str media "js/mymenu.js" %}
2 {% insert_str media "css/mymenu.css" %}
3 {% insert raw_js %} "some script useful for mymenu" {% endinsert %}
4 {% insert raw_css %}
5 ul#mymenu { position: fixed; display: block; padding:0; margin:0;
6           bottom: 10px; right: 10px; }
7 {% endinsert %}
8
9 <ul id='mymenu'>
10 {% for d in menu_items %}
11   <li class='other'> <a href="{{ d.href }}"> {{ d.label }} </a> </li>
12 {% endfor %}
13 </ul>
14
15 <!--
16 <ul id='mymenu'>
17   <li class="other"> other text </li>
18   <li class="other"> another non-current text </li>
19   <li class="current" title="the title for the current item">
20     <span>"The label of the current menu" </span>
21   </li>
22 </ul>
23 -->