Use super() call instead of copy-pasting the contents of the parent block

This commit is contained in:
2017-09-29 16:17:58 +02:00
parent 8fe6b472e4
commit bd93625119

View File

@@ -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 %}