diff options
-rw-r--r-- | scripts/news.py | 2 | ||||
-rw-r--r-- | template/pages/index/content.html | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/scripts/news.py b/scripts/news.py index 1f291c7..01555aa 100644 --- a/scripts/news.py +++ b/scripts/news.py @@ -19,7 +19,7 @@ class NewsPlugin: template = string.Template(content) return_value[filename] = template.safe_substitute( news = ''.join(self._news), - latest_news = ''.join(self._news[:3]), + latest_news = ''.join(self._news[:5]), ) return return_value diff --git a/template/pages/index/content.html b/template/pages/index/content.html index f7b2811..d8e8a12 100644 --- a/template/pages/index/content.html +++ b/template/pages/index/content.html @@ -28,3 +28,4 @@ [ Neues ] </h2> $latest_news +<p><a href="neues">alle News</a></p> |