-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotos.html
34 lines (31 loc) · 1.16 KB
/
photos.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
---
title: Photos
layout: default
description: Pictures I have taken that I like.
---
{% include nav.html %}
{% assign filtered_photos = site.photos | where:"show", true %}
<main>
<div class="row-wrap">
<h2>Some of my Photography</h2>
</div>
{% for photo in filtered_photos reversed %}
<div class="row-wrap-wide photo-container">
<a href="{{ photo.url }}" class="no-highlight">
<picture>
<source srcset="{{ photo.image }}.webp" type="image/webp">
<img src="{{ photo.image }}.jpg" width="{{ photo['ImageWidth'] }}" height="{{ photo['ImageHeight'] }}"
loading="lazy" class="photo" title="{{ photo['Description'] }}" alt="{{ photo.description }}">
</picture>
</a>
<p>{{ photo['Title'] }}</p>
<p><small>
{{ photo['DateTimeOriginal'] | date:"%b %-d, %Y" }} · {{ photo['Model'] }} · ISO {{
photo['ISO'] }} ·
{{ photo["ExposureTime"] }} ·
f{{ photo["FNumber"] }} ·
{{ photo["LensID"] }}
</small></p>
</div>
{% endfor %}
</main>