aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/menu.html
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2013-05-08 10:54:59 +0200
committerSébastien Dailly <sebastien@chimrod.com>2013-05-08 15:47:02 +0200
commit22e881fa89e4b3b8f6207d2c2e8713c2ff919400 (patch)
treeaed2733a92661a803801ab8876558d794c62e515 /theme/templates/menu.html
parentfaf19242226324b95ad96cb01d29131e7ba65e50 (diff)
Added articlelogo on main page
Diffstat (limited to 'theme/templates/menu.html')
-rwxr-xr-xtheme/templates/menu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/menu.html b/theme/templates/menu.html
index bab98fa..6cc3636 100755
--- a/theme/templates/menu.html
+++ b/theme/templates/menu.html
@@ -15,7 +15,7 @@
<li class='has-sub'><span><a href="{{ SITEURL }}/">Articles</a></span>
<ul>
{% for article in articles %}
- {% if loop.index < FEED_MAX_ITEMS %}
+ {% if loop.index <= FEED_MAX_ITEMS %}
<li><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></li>
{% endif %}
{% endfor %}