Issue #2: The blog page can be full width, for now
This commit is contained in:
parent
5b15fc322e
commit
5f32ea5572
|
@ -5,16 +5,20 @@ nav: blog
|
||||||
use:
|
use:
|
||||||
- posts
|
- posts
|
||||||
---
|
---
|
||||||
{% block content %}
|
{% block content_wrapper %}
|
||||||
<h1>Blog</h1>
|
<div class="col-md-12">
|
||||||
|
{% block content %}
|
||||||
|
<h1>Blog</h1>
|
||||||
|
|
||||||
{% if data.posts %}
|
{% if data.posts %}
|
||||||
<ul>
|
<ul>
|
||||||
{% for post in data.posts %}
|
{% for post in data.posts %}
|
||||||
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
|
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
</div> {# .col.md-12 #}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block sidebar %}{% endblock %}
|
{% block sidebar %}{% endblock %}
|
Loading…
Reference in a new issue