-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity.html
242 lines (219 loc) · 7.06 KB
/
activity.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
---
title: What I Have Been Up To
layout: generic
sectionid: timeline
---
<div class="container">
<div class="inner-content">
<h1>What I Have Been Up to?</h1>
<div class="row">
<div class="col-md-4">
<img src="/img/build-2024-ai-demo.jpg" class="img-responsive" style="margin-top: 10px;" />
</div>
<div class="col-md-4">
<img src="/img/conferencetalk.jpg" class="img-responsive" style="margin-top: 10px;" />
</div>
<div class="col-md-4">
<img src="/img/panel.jpg" class="img-responsive" style="margin-top: 10px;" />
</div>
</div>
<div class="row">
<div class="col-md-9">
<div class="timeline">
{% assign blogs = site.data.blogs %}
{% assign talks = site.data.talks %}
{% assign videos = site.data.videos %}
{% assign all_items = blogs | concat: talks | concat: videos %}
{% assign sorted_items = all_items | sort: 'date' | reverse %}
{% assign current_year = "" %}
{% for item in sorted_items %}
{% assign item_year = item.date | date: "%Y" %}
{% if item_year != current_year %}
{% assign current_year = item_year %}
<div class="timeline-year">
<h2>{{ current_year }}</h2>
</div>
{% endif %}
<div class="timeline-item" id="item-{{ forloop.index }}">
<div class="timeline-icon">
{% if blogs contains item %}
<span class="icon-pencil"></span>
{% elsif talks contains item %}
<span class="icon-mic"></span>
{% elsif videos contains item %}
<span class="icon-video"></span>
{% endif %}
</div>
<div class="timeline-content">
{% if blogs contains item %}
<h6>Blogged</h6>
{% elsif talks contains item %}
<h6>Spoke at a Conference</h6>
{% elsif videos contains item %}
<h6>Made a video</h6>
{% endif %}
{% if item.url %}
<h4><a href="{{ item.url }}">{{ item.title }}</a></h4>
{% else %}
<h4>{{ item.title }}</h4>
{% endif %}
<p>{{ item.date | date: "%B %d, %Y" }}</p>
<p>{{ item.location }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="col-md-3">
<div class="timeline-menu">
{% assign current_year = "" %}
{% for item in sorted_items %}
{% assign item_year = item.date | date: "%Y" %}
{% if item_year != current_year %}
{% assign current_year = item_year %}
<div class="timeline-menu-year">
<h4>{{ current_year }}</h4>
</div>
{% endif %}
<div class="timeline-menu-item">
<a href="#item-{{ forloop.index }}" class="timeline-menu-dot"></a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
<style>
.timeline {
position: relative;
padding: 20px 0;
list-style: none;
}
.timeline:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 2px;
background: #C5C5C5;
left: 50%;
margin-left: -1px;
}
.timeline-year {
text-align: center;
margin: 20px 0;
z-index: 2;
position: relative;
}
.timeline-year h2 {
background: #fff;
display: inline-block;
padding: 10px 20px;
border-radius: 5px;
border: 2px solid #C5C5C5;
}
.timeline-item {
margin-bottom: 20px;
position: relative;
}
.timeline-item:before,
.timeline-item:after {
content: " ";
display: table;
}
.timeline-item:after {
clear: both;
}
.timeline-item .timeline-icon {
position: absolute;
left: 50%;
width: 40px;
height: 40px;
margin-left: -20px;
background: #fff;
border-radius: 50%;
border: 2px solid #C5C5C5;
text-align: center;
line-height: 36px;
font-size: 18px;
color: #C5C5C5;
}
.timeline-item .timeline-content {
width: 45%;
padding: 20px;
background: #f5f5f5;
position: relative;
border-radius: 5px;
}
.timeline-item:nth-child(odd) .timeline-content {
left: 0;
}
.timeline-item:nth-child(even) .timeline-content {
left: 55%;
}
.icon-pencil::before {
content: "\270F";
/* Unicode for pencil icon */
}
.icon-mic::before {
content: "\1F3A4";
/* Unicode for microphone icon */
}
.icon-video::before {
content: "\1F4F9";
/* Unicode for video camera icon */
}
.timeline-menu {
position: fixed;
right: 20px;
top: 100px;
width: 100px;
max-height: 80vh;
overflow-y: auto;
overflow-x: hidden;
transition: transform 0.3s ease-in-out;
}
.timeline-menu-year {
text-align: center;
margin-bottom: 10px;
}
.timeline-menu-item {
text-align: center;
margin-bottom: 10px;
transition: transform 0.3s ease-in-out;
}
.timeline-menu-item:hover {
transform: scale(2);
}
.timeline-menu-dot {
display: inline-block;
width: 20px;
height: 20px;
background: #C5C5C5;
border-radius: 50%;
border: 2px solid #fff;
transition: background 0.3s;
}
.timeline-menu-dot:hover {
background: #000;
}
@media (max-width: 767px) {
.timeline-menu {
display: none;
}
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
const menuItems = document.querySelectorAll('.timeline-menu-item a');
menuItems.forEach(item => {
item.addEventListener('click', function(event) {
event.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetElement = document.getElementById(targetId);
targetElement.scrollIntoView({ behavior: 'smooth' });
});
});
});
</script>