diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-08-23 21:33:42 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-08-23 21:33:42 +0200 |
| commit | a05d52a7b13607181ce0443b17769bb02532dfc1 (patch) | |
| tree | f5c4722363f29a610d1a4f95efbd9351999083f6 /templates/review.liquid | |
| parent | 5ddde1cbb70bf4bc2df127fced5afb966069d299 (diff) | |
importing rtf
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" %} |
