File tree Expand file tree Collapse file tree 3 files changed +47
-4
lines changed Expand file tree Collapse file tree 3 files changed +47
-4
lines changed Original file line number Diff line number Diff line change 332
332
link : " https://www.youtube.com/watch?v=1mlVzss8bHE"
333
333
- title : " 37.2 - Damjan Gjurovski - Designing Zero Trust Systems"
334
334
link : " https://www.youtube.com/watch?v=YV5U2mcohTk"
335
+
336
+ - id : 38
337
+ edition : " Cloud Native Linz - Laravel in K8s and Shell Scripting"
338
+ date : " 2025-03-18"
339
+ event_link : " https://www.meetup.com/cloud-native-linz/events/306377483/"
340
+ registrations : " "
341
+ recording : []
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ <h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
34
34
< a href ="{{ site.baseurl }}/join "> Join us!</ a >
35
35
< a href ="{{ site.baseurl }}/speaker-info "> Speaker Info</ a >
36
36
< a href ="{{ site.baseurl }}/slides "> Slides & Content</ a >
37
- < a href ="{{ site.baseurl }}/statistics "> Statistics </ a >
37
+ < a href ="{{ site.baseurl }}/statistics "> Events </ a >
38
38
<!--
39
39
<a href="{{ site.baseurl }}/search">Search</a>
40
40
<a href="{{ site.baseurl }}/archive">Archive</a>
Original file line number Diff line number Diff line change 1
1
---
2
2
layout : page
3
- title : Statistics
3
+ title : Events
4
4
permalink : /statistics/
5
5
---
6
6
7
- ### Statistics
8
-
9
7
<style >
10
8
.date-label {
11
9
display : inline-block ;
@@ -21,6 +19,37 @@ permalink: /statistics/
21
19
}
22
20
</style >
23
21
22
+ {% assign upcoming_events = false %}
23
+ {% for event in site.data.events %}
24
+ {% assign event_date = event.date | date: "%Y-%m-%d" %}
25
+ {% assign today = site.time | date: "%Y-%m-%d" %}
26
+ {% if event_date > today %}
27
+ {% assign upcoming_events = true %}
28
+ {% break %}
29
+ {% endif %}
30
+ {% endfor %}
31
+
32
+ {% if upcoming_events %}
33
+ ### Upcoming Events
34
+ <table width =" 100% " >
35
+ {% for event in site.data.events %}
36
+ {% assign event_date = event.date | date: "%Y-%m-%d" %}
37
+ {% assign today = site.time | date: "%Y-%m-%d" %}
38
+ {% if event_date > today %}
39
+ <tr >
40
+ <td >
41
+ <span class =" date-label " >{{ event.date }}</span ><br >
42
+ <a href =" {{ event.event_link }} " >{{ event.edition }}</a >
43
+ </td >
44
+ </tr >
45
+ {% endif %}
46
+ {% endfor %}
47
+ </table >
48
+ {% endif %}
49
+
50
+
51
+ ### Statistics of past events
52
+
24
53
<table >
25
54
<thead >
26
55
<tr>
@@ -33,6 +62,12 @@ permalink: /statistics/
33
62
</thead >
34
63
<tbody >
35
64
{% for event in site.data.events %}
65
+
66
+ {% assign event_date = event.date | date: "%Y-%m-%d" %}
67
+ {% assign today = site.time | date: "%Y-%m-%d" %}
68
+
69
+ {% if event_date < today %}
70
+
36
71
<tr>
37
72
<td>{{ event.id }}</td>
38
73
<td>
@@ -58,6 +93,7 @@ permalink: /statistics/
58
93
{% endif %}
59
94
</td>
60
95
</tr>
96
+ {% endif %}
61
97
{% endfor %}
62
98
</tbody >
63
99
</table >
You can’t perform that action at this time.
0 commit comments