diff options
Diffstat (limited to 'templates/review.liquid')
| -rw-r--r-- | templates/review.liquid | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/review.liquid b/templates/review.liquid new file mode 100644 index 0000000..acbb62f --- /dev/null +++ b/templates/review.liquid @@ -0,0 +1,15 @@ +{% include "_header" %} + +{% for p in pages %} + <div style="border: 1px solid #ddd; margin: 10px; padding: 0 10px"> + <h2>[{{forloop.index}}] {{p.title}}</h2> + <h3>{{p.author}}</h3> + <p> + <tt>{{p.citation}}</tt> + </p> + {{p.description}} + </div> +{% endfor %} + + +{% include "_footer" %} |
