diff options
Diffstat (limited to 'theme/templates/menu.html')
-rwxr-xr-x | theme/templates/menu.html | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/theme/templates/menu.html b/theme/templates/menu.html index 5aca0f7..037d85a 100755 --- a/theme/templates/menu.html +++ b/theme/templates/menu.html @@ -26,9 +26,19 @@ {{ submenu(categories, 'categories', 'Catégories') }} - {% if LINKS %} - {{ submenu(LINKS, 'index', 'Liens') }} - {% endif %} + <li class='has-sub'><a href="{{ SITEURL }}/"><span>À lire</span></a> + <ul> + {% for page in pages %} + <li><a href="{{SITEURL}}/{{page.url}}"><span>{{ page.title }}</span></a></li> + {% endfor %} + {% if pages and LINKS %} + <hr/> + {% endif %} + {% for link, target in LINKS %} + <li><a href="{{target}}"><span>{{ link }}</span></a></li> + {% endfor %} + </ul> + </li> {# |