summaryrefslogtreecommitdiff
path: root/templates/review.liquid
blob: ee1d91083dfeac71c11b29cdb4a63e520d386c5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% include "_header" %}

<div style="height: 100%; overflow-y: scroll">

{% for p in pages %}
  <div style="border: 1px solid #ddd; margin: 10px; padding: 0 10px; background: white; color: black">
    <h2>[{{forloop.index}}] {{p.title}}</h2>
    <h3>{{p.author}}</h3>
    <p>
      <tt>{{p.citation}}</tt>
    </p>
    {{p.description}}
  </div>
{% endfor %}

</div>

{% include "_footer" %}