page wrappings
This commit is contained in:
parent
2af29592d5
commit
4d469a54a5
|
@ -17,6 +17,10 @@ body {
|
||||||
page-break-inside: avoid;
|
page-break-inside: avoid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.subs {
|
||||||
|
page-break-before: avoid;
|
||||||
|
}
|
||||||
|
|
||||||
.subText {
|
.subText {
|
||||||
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -53,3 +57,7 @@ body {
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.headerWrapper {
|
||||||
|
page-break-after: avoid;
|
||||||
|
page-break-inside: avoid;
|
||||||
|
}
|
||||||
|
|
2868
print/out.html
2868
print/out.html
File diff suppressed because it is too large
Load Diff
|
@ -6,13 +6,15 @@
|
||||||
<body>
|
<body>
|
||||||
{% for f in files %}
|
{% for f in files %}
|
||||||
<div class="fileWrapper">
|
<div class="fileWrapper">
|
||||||
<h3 class="title"><span class="counter">{{ f.serial }}. </span>{{ f.title }}</h3>
|
<div class="headerWrapper">
|
||||||
{% for person in f.bios %}
|
<h3 class="title"><span class="counter">{{ f.serial }}. </span>{{ f.title }}</h3>
|
||||||
<div class="people"><span class="personName">{{ person.name }}</span>: {{ person.bio }}</div>
|
{% for person in f.bios %}
|
||||||
{% endfor %}
|
<div class="people"><span class="personName">{{ person.name }}</span>: {{ person.bio }}</div>
|
||||||
<div class="datetime">
|
{% endfor %}
|
||||||
<div class="date">Date: {{ f.dateStr }}</div>
|
<div class="datetime">
|
||||||
<div class="time">Time: {{ f.time }}</div>
|
<div class="date">Date: {{ f.dateStr }}</div>
|
||||||
|
<div class="time">Time: {{ f.time }}</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subs">
|
<div class="subs">
|
||||||
{% for s in f.subs %}
|
{% for s in f.subs %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user