From a4e62249d7ad08398675900cb09162d421f3460c Mon Sep 17 00:00:00 2001 From: Samarjeet Date: Fri, 9 Jan 2015 20:29:56 +0530 Subject: [PATCH] Don't show location on main page --- index.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 437cf1d..bd33595 100644 --- a/index.html +++ b/index.html @@ -16,13 +16,15 @@
{% for post in site.posts %} {% if post.title != 'Venue' %} -
-

- {{ post.title }} -

- {{ post.content }} -
+ {% if post.title != 'Location' %} +
+

+ {{ post.title }} +

+ {{ post.content }} +

+ {% endif %} {% endif %} {% endfor %}