From 1fbae852ba04785f2ca5ceed2b8c072e438e4767 Mon Sep 17 00:00:00 2001
From: Luca Chiricozzi
Date: Fri, 9 Jan 2015 20:26:48 +0100
Subject: [PATCH] Display only 75 words
---
templates/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/templates/index.html b/templates/index.html
index 3a80935..c4a8069 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -22,7 +22,7 @@
• {{ article.category }}{% if DISQUS_SITENAME %} •
{% endif %}
{{ article.summary|striptags }}
- {{ ' '.join(article.content.split(' ')[0:100])|striptags }}...
+ {{ ' '.join(article.content.split(' ')[0:75])|striptags }}...
Read More