Fix for broken url in blog post header image

This commit is contained in:
2018-01-18 11:37:55 +01:00
parent bdff391440
commit 18fe240b93

View File

@@ -1,7 +1,7 @@
//- ******************************************************* -//
| {% macro render_blog_post(node) %}
| {% if node.picture %}
a.blog_index-header(href="{{ node.url }}")
a.blog_index-header(href="{{ node.properties.url }}")
img(src="{{ node.picture.thumbnail('l', api=api) }}")
| {% endif %}