This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/blog.html.twig

24 lines
454 B
Twig
Raw Normal View History

2015-03-16 11:16:42 +00:00
---
layout: default
title: Blog
2015-03-17 04:04:02 +00:00
nav: blog
2015-03-19 11:36:09 +00:00
use:
- posts
2015-03-16 11:16:42 +00:00
---
{% block content_wrapper %}
<div class="col-md-12">
{% block content %}
<h1>Blog</h1>
2015-03-16 11:16:42 +00:00
{% if data.posts %}
<ul>
{% for post in data.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}
</div> {# .col.md-12 #}
{% endblock %}
{% block sidebar %}{% endblock %}