diff --git a/balkiantheme/templates/base.html b/balkiantheme/templates/base.html
index bfee1f1..089604b 100644
--- a/balkiantheme/templates/base.html
+++ b/balkiantheme/templates/base.html
@@ -74,7 +74,7 @@
Latest entries
- {% for p in articles %}
+ {% for p in articles[:5] %}
- {{ p.title }}
{% for c in p.tags %}
- {{ c }}
diff --git a/content/2014-10-09-proxies.rst b/content/2014-10-09-proxies.rst
index a20ba2d..d4eade7 100644
--- a/content/2014-10-09-proxies.rst
+++ b/content/2014-10-09-proxies.rst
@@ -22,7 +22,10 @@ Gunicorn
THE SAME**. Otherwise, Gunicorn will fail miserably.
Try it with:
-``bash venv/bin/gunicorn -w 4 -b 127.0.0.1:8888 --log-file - --access-logfile - wsgi:application``
+
+.. code-block:: bash
+
+ venv/bin/gunicorn -w 4 -b 127.0.0.1:8888 --log-file - --access-logfile - wsgi:application
UWSGI
-----