-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphotography.html
More file actions
100 lines (78 loc) · 2.67 KB
/
Copy pathphotography.html
File metadata and controls
100 lines (78 loc) · 2.67 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
---
layout: page-wide
jumbotron: false
title: Photo
# thumb: /assets/img/posts/2022-12-28-street/03.webp
thumb: /assets/img/thumb.png
navbar: true
navbar-order: 1
row_height: 350
show-banner: false
---
<script type="text/javascript">
window.galleryRowHeight = {{ page.row_height }}
window.galleryLastRow = "left"
</script>
{% assign posts_selected = site.portfolio | sort: 'order' | where: "role", "feature" %}
{% assign posts_photojournal = site.photojournal | reverse %}
{% assign posts_published = site.photowork | reverse %}
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/gsap.min.js"></script> -->
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ScrollTrigger.min.js"></script> -->
<script type="module">
import * as motion from "https://cdn.jsdelivr.net/npm/motion@latest/+esm"
window.m = motion
</script>
<script type="module" src="/js/scrollview.js"></script>
<div class="scroll-outer-container">
<div class="scroller-sidebar">
<div class="sidebar-inner-scroll">
<div class="pj-list-header" uid="published">Published</div>
<ul class="pj-list">
{% for item in posts_published %}
{% unless item.role %}
{% assign item_date = item.date | date: "%m.%y" %}
<a><li class="pj-list-item" uid="{{ item.path }}">{{ item.title }}</li></a>
{% endunless %}
{% endfor %}
</ul>
<div class="pj-list-header" uid="collections">Collections</div>
<ul class="pj-list">
{% for item in posts_selected %}
{% assign item_date = item.date | date: "%m.%y" %}
<a><li class="pj-list-item" uid="{{ item.path }}">{{ item.title }}</li></a>
{% endfor %}
</ul>
<li class="pj-list-header" uid="timeline">Timeline</li>
<ul class="pj-list">
{% for item in posts_photojournal %}
{% unless item.role %}
{% assign item_date = item.date | date: "%m-%y" %}
<a><li class="pj-list-item" uid="{{ item.path }}">{{ item_date }} {{ item.title }}</li></a>
{% endunless %}
{% endfor %}
</ul>
</div>
</div>
<div class="scroll-inner-container">
<!-- Published -->
<div class="inner-list" uid="published">
{% for item in posts_published %}
{% include collection-preview-vert-text.html item=item %}
{% endfor %}
</div>
<!-- Selected -->
<div class="inner-list" uid="collections">
{% for item in posts_selected %}
{% include collection-preview-vert-text.html item=item %}
{% endfor %}
</div>
<div class="inner-list" uid="timeline">
<!-- Photojournal -->
{% for item in posts_photojournal %}
{% unless item.role %}
{% include collection-preview-vert-text.html item=item %}
{% endunless %}
{% endfor %}
</div>
</div>
</div>