-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.html
35 lines (24 loc) · 1.14 KB
/
items.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: default
---
{% for collection in site.collections %}
{% unless collection.label == 'posts' %}
{% for doc in collection.docs %}
<div class="item record">
<h2><a href="{{ site.baseurl }}/{{ doc.collection }}/{{ doc.title }}.html" class="permalink">{{ doc.title }}</a></h2>
<div class="item-meta">
<div class="item-img">
<!-- Changed from square thumbnail to regular thumbnail. Signed, the intrepid Alex and Bob.
<a href="/items/show/333"><img src="http://mhdh.library.columbia.edu/files/square_thumbnails/f4329b4a2a548e7740a1b5d1b3a117a6.jpg" alt="A Site for the Cathedral.jpg" title="A Site for the Cathedral.jpg"/>
</a> -->
<a href="{{ site.baseurl }}/images/original/{{ doc.file }}"><img src="{{ site.baseurl }}/images/thumbnails/{{ doc.filethumbnail }}" alt="{{ doc.fichier }}" title="{{ doc.fichier }}"/>
</a> </div>
<div class="item-description">{{ doc.description }}</div>
<!--
-->
</div><!-- end class="item-meta" -->
</div><!-- end class="item hentry" -->
{% endfor %}
</div>
{% endunless %}
{% endfor %}