In page generator, add break for printing between pages

This commit is contained in:
Samy Pessé
2014-04-04 15:47:45 -07:00
parent af9f3cf89f
commit 63f946ced9
+1 -2
View File
@@ -4,8 +4,7 @@
{% block content %}
{% for page in pages %}
<hr>
<article id="{{ page.path }}">
<article id="{{ page.path }}" style="page-break-after: always;">
{% for section in page.content %}
{% if section.type == "normal" %}
{% autoescape false %}{{ section.content }}{% endautoescape %}