Removed extra div

This commit is contained in:
Oliver Davies 2015-04-19 08:45:48 +01:00
parent 1f073726b0
commit 93d498cf5e

View file

@ -1,24 +1,22 @@
{% extends 'default' %} {% extends 'default' %}
{% block content_wrapper %} {% block content_wrapper %}
<div class="col-md-9"> {% include 'post-header' %}
{% include 'post-header' %} {% block content %}{% endblock %}
{% block content %}{% endblock %}
{% if page.tags %} {% if page.tags %}
<p class="tags"> <p class="tags">
Tags: Tags:
{% for tag in page.tags %} {% for tag in page.tags %}
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a>{% if not loop.last %}, {% endif %} <a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a>{% if not loop.last %}, {% endif %}
{% endfor %} {% endfor %}
</p> </p>
{% endif %} {% endif %}
{% if page.next_post or page.previous_post %} {% if page.next_post or page.previous_post %}
<ul> <ul>
{% if page.next_post %}<li>Next post: <a href="{{ page.next_post.url }}">{{ page.next_post.title }}</a></li>{% endif %} {% if page.next_post %}<li>Next post: <a href="{{ page.next_post.url }}">{{ page.next_post.title }}</a></li>{% endif %}
{% if page.previous_post %}<li>Previous post: <a href="{{ page.previous_post.url }}">{{ page.previous_post.title }}</a></li>{% endif %} {% if page.previous_post %}<li>Previous post: <a href="{{ page.previous_post.url }}">{{ page.previous_post.title }}</a></li>{% endif %}
</ul> </ul>
{% endif %} {% endif %}
</div>{# .col-md-9 #}
{% endblock %} {% endblock %}