notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

sidebar.html (214B)


      1 <nav class="sidebar">
      2     <ul>
      3         {% for nav_item in nav %}
      4             <li>
      5                 <a href="{{ nav_item.url | url }}">{{ nav_item.title }}</a>
      6             </li>
      7         {% endfor %}
      8     </ul>
      9 </nav>