A new Riff-radio.org site with a static approach.

ui_helper.tmpl 423B

12345678910111213141516171819
  1. ## -*- coding: utf-8 -*-
  2. <%def name="breadcrumbs(crumbs)">
  3. %if crumbs:
  4. <nav class="breadcrumbs">
  5. <ul class="breadcrumb">
  6. % for link, text in crumbs:
  7. % if text != index_file:
  8. % if link == '#':
  9. <li>${text.rsplit('.html', 1)[0]}</li>
  10. % else:
  11. <li><a href="${link}">${text}</a></li>
  12. % endif
  13. % endif
  14. % endfor
  15. </ul>
  16. </nav>
  17. %endif
  18. </%def>