-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworld.html
27 lines (25 loc) · 1.07 KB
/
world.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
---
layout: default
---
{% include navigation.html %}
<div class="container-md">
<div class="row mb-4">
<div class="col-12 col-lg-8 ml-top-padding">
<div class="heading-title mb-5">
<h1>World</h1>
<p class="lead">Photos and videos I have taken throughout the world.</p>
<p>Here you will find all photos I don't post on social media as I'm trying to be more conscious about my data and privacy. While the work is not yet complete, I keep migrating my photos to platforms with less tracking, less algorithmic filtering, and less advertising.</p>
{% for item in site.pages %} {% assign item_crumbs = item.url |
remove_first: page.dir | split: '/' %} {% if item_crumbs.size == 2 and
item_crumbs.first == 'world' %}
<div class="row mb-3 mb-md-0">
<div class="col-12 col-md-3">{{ item.date | date: "%B, %Y" }}</div>
<div class="col">
<a href="{{ item.url | relative_url }}">{{ item.title }}</a>
</div>
</div>
{% endif %} {% endfor %}
</div>
</div>
</div>
</div>