-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
bio.html
24 lines (24 loc) · 1.01 KB
/
bio.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
<section>
{% for name in site.data.bio %}
<details>
<summary class="text-center text-error">{{ name.name }} Link-in-Bio</summary>
<div class="bio-gallery">
{% for item in name.items %}
{% if name.ratio %}
<div class="bio-item" style="aspect-ratio: 9/16;">
<a href="{{ item.url }}" target="_blank" aria-label="{{ name.name }} link-in-bio">
<img class="bio-img text-center" src="{{ item.image }}" width="100%" height="100%"
alt="{{ name.name }} post"></a>
</div>
{% else %}
<div class="bio-item">
<a href="{{ item.url }}" target="_blank" aria-label="{{ name.name }} link-in-bio">
<img class="bio-img text-center" src="{{ item.image }}" width="100%" height="100%"
alt="{{ name.name }} post"></a>
</div>
{% endif %}
{% endfor %}
</div>
</details>
{% endfor %}
</section>