From bd93625119967871ed4bd89ff1e8d3573b768dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 29 Sep 2017 16:17:58 +0200 Subject: [PATCH] Use super() call instead of copy-pasting the contents of the parent block --- src/templates/nodes/custom/blog/index.pug | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/templates/nodes/custom/blog/index.pug b/src/templates/nodes/custom/blog/index.pug index 502a8739..35eb2aae 100644 --- a/src/templates/nodes/custom/blog/index.pug +++ b/src/templates/nodes/custom/blog/index.pug @@ -3,9 +3,7 @@ | {% block page_title %}Blog{% endblock%} | {% block css %} -link(href="{{ url_for('static_pillar', filename='assets/css/font-pillar.css', v=17320171) }}", rel="stylesheet") -link(href="{{ url_for('static_pillar', filename='assets/css/base.css', v=17320171) }}", rel="stylesheet") -link(href="{{ url_for('static_pillar', filename='assets/css/project-main.css', v=17320171) }}", rel="stylesheet") +| {{ super() }} link(href="{{ url_for('static_pillar', filename='assets/css/blog.css', v=17320171) }}", rel="stylesheet") | {% endblock %}