diff options
Diffstat (limited to 'art/plt/page_list.html')
-rw-r--r-- | art/plt/page_list.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/art/plt/page_list.html b/art/plt/page_list.html deleted file mode 100644 index 8cdebd8..0000000 --- a/art/plt/page_list.html +++ /dev/null @@ -1,22 +0,0 @@ -{%macro print(pages)%} -{%import "art_entry.html" as art_entry%} -<div class="art-grid"> - {%for p in pages%} - {%if p.meta['tall'] is defined%} - {%if p.meta['wide'] is defined%} - {{art_entry.print(p, 'tall wide')}} - {%else%} - {{art_entry.print(p, 'tall')}} - {%endif%} - {%elif p.meta['wide'] is defined%} - {%if p.meta['tall'] is defined%} - {{art_entry.print(p, 'tall wide')}} - {%else%} - {{art_entry.print(p, 'tall')}} - {%endif%} - {%else%} - {{art_entry.print(p)}} - {%endif%} - {%endfor%} -</div> -{%endmacro%} |