Skip to content

Commit

Permalink
Don't show location on main page
Browse files Browse the repository at this point in the history
  • Loading branch information
samarsault committed Jan 9, 2015
1 parent 0b7670c commit a4e6224
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
<div class="posts">
{% for post in site.posts %}
{% if post.title != 'Venue' %}
<div class="post">
<h2 style="padding-bottom:5px;">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h2>
{{ post.content }}
</div>
{% if post.title != 'Location' %}
<div class="post">
<h2 style="padding-bottom:5px;">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h2>
{{ post.content }}
</div>
<hr/>
{% endif %}
{% endif %}
{% endfor %}
</div>
Expand Down

0 comments on commit a4e6224

Please sign in to comment.