aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/menu.html
diff options
context:
space:
mode:
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 %}