Skip to content

Commit d451b51

Browse files
committed
Go back to time.is instead of world time buddy because of the URL format
1 parent 29b9af3 commit d451b51

File tree

7 files changed

+6
-11
lines changed

7 files changed

+6
-11
lines changed

_layouts/agenda2.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,9 @@ <h3>{{ item.day }}</h3>
108108
{% else %}
109109
{% assign datestring = "%H%M_%-d_%B_%Y_in_CT" %}
110110
{% endif %}
111-
<td>
112-
<a href="https://www.worldtimebuddy.com/?qm=1&lid=6&h={{ page.wtb_timezone }}&date={{ item.start | date: "%y-%m-%d" }}&sln={{ item.start | date: "%H" }}-{{ item.end | date: "%H" }}">
113-
{{ item.start | date: "%H:%M" }} - {{ item.end | date: "%H:%M" }}</a>
114-
</td>
111+
<td><a href="https://time.is/{{ item.start | date: datestring }}">
112+
{{ item.start | date: "%H:%M" }} - {{ item.end | date: "%H:%M" }}
113+
</a></td>
115114
{% else %}
116115
<td>{{ item.start }} - {{ item.end }}</td>
117116
{% endif %}

meetings/2024/09/agenda.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ month: "09"
77
webex: "https://github.com/mpi-forum/mpi-standard/wiki/Virtual-Forum-Meeting-Information"
88
timezone: "Australian Western Standard Time"
99
timezone_abbr: "AWST"
10-
wtb_timezone: "2063523" # Can figure this out here: https://www.worldtimebuddy.com/clock-widget
1110
---
1211

meetings/2025/01/agenda.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ permalink: meetings/2025/01/agenda
55
year: "2025"
66
month: "01"
77
webex: "https://github.com/mpi-forum/mpi-standard/wiki/Virtual-Forum-Meeting-Information"
8-
wtb_timezone: "5" # Can figure this out here: https://www.worldtimebuddy.com/clock-widget
98
---
109

meetings/2025/03/agenda.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ month: "03"
77
webex: "https://github.com/mpi-forum/mpi-standard/wiki/Virtual-Forum-Meeting-Information"
88
timezone: "Central European Time"
99
timezone_abbr: "CET"
10-
wtb_timezone: "2825297" # Can figure this out here: https://www.worldtimebuddy.com/clock-widget
1110
---
1211

meetings/2025/06/agenda.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ year: "2025"
66
month: "06"
77
webex: "https://github.com/mpi-forum/mpi-standard/wiki/Virtual-Forum-Meeting-Information"
88
timezone: "US Central"
9-
wtb_timezone: "6" # Can figure this out here: https://www.worldtimebuddy.com/clock-widget
109
---
1110

1211
## Officer Nominations

meetings/2025/09/agenda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: meetings/2025/09/agenda
55
year: "2025"
66
month: "09"
77
webex: "https://github.com/mpi-forum/mpi-standard/wiki/Virtual-Forum-Meeting-Information"
8-
timezone: "US Central"
9-
wtb_timezone: "6" # Can figure this out here: https://www.worldtimebuddy.com/clock-widget
8+
timezone: "US Eastern"
9+
timezone_abbr: "ET"
1010
---
1111

utils/create_meeting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
file.write('month: "' + start_month + '"\n')
3636
file.write('webex: "https://github.com/mpi-forum/mpi-standard/wiki/Virtual-Forum-Meeting-Information"\n')
3737
file.write('timezone: "US Central"\n')
38-
file.write('wtb_timezone: "6" # Can figure this out here: https://www.worldtimebuddy.com/clock-widget\n')
38+
file.write('timezone_abbr: "CT" # Can figure this out here: https://time.is\n')
3939
file.write("---\n\n")
4040
file.close()
4141

0 commit comments

Comments
 (0)