-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
photos.html
36 lines (34 loc) · 1.29 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
35
36
---
layout: default
type: photos
has_open_heart: true
title: Photos
---
<div class="photos-wrapper" id="photos">
{% assign photos = site.data.photos | reverse %}
{% for photo in photos %}
<figure id="P{{ photo.id }}" class="figure-{% if photo.meta.ratio > 1 %}landscape{% else %}portrait{% endif %}">
{% capture image_url %}{% for url in photo.variants %}{% if url contains "/public" %}{{ url }}{% endif %}{% endfor %}{% endcapture %}
<a href="{{ image_url }}" class="image-link">
<img
src="{{ image_url }}"
height="2400"
style="aspect-ratio: {{ photo.meta.ratio }}"
alt="{{ photo.meta.alt }}"
title="{{ photo.meta.alt }}"
class="{% if photo.meta.ratio > 1 %}landscape{% else %}portrait{% endif %}"
loading="lazy">
</a>
<figcaption>
<div class="desc photo-metadata">
<div>{{ photo.uploaded | date: "%Y/%m/%d (%a)" }}</div>
{% if photo.meta.location %}<div>@ {{ photo.meta.location }}</div>{% endif %}
<open-heart class="text-open-heart" href="https://likes.muan.dev/?id=photo-P{{ photo.guid }}" emoji="❤️" aria-labelledby="like-prompt">
<span class="on">Liked ♥︎.</span><span class="off">Like?</span>
</open-heart>
</div>
{{ photo.meta.caption | markdownify }}
</figcaption>
</figure>
{% endfor %}
</div>