Skip to content

Commit 36c4a98

Browse files
authored
Events: add AWS Community Day Shenzhen to the community calendar (#891)
The 3D cloud-native topology session was accepted by 2026 亚马逊云科技 Community Day · 深圳 (Oct 17), a week before the Hong Kong edition (Oct 24). Same talk, delivered in Chinese rather than English. Adds an optional `lang` field so one session appearing at two events in different languages is distinguishable, rendered as a small chip next to the speaker. Only shown where a talk sets it, so every existing entry is unaffected. The Shenzhen agenda is not published yet, so the title carries the English one the session is already listed under, with a note in the data file to swap in the Chinese title once the agenda lands.
1 parent e809237 commit 36c4a98

3 files changed

Lines changed: 27 additions & 0 deletions

File tree

assets/scss/_custom_home.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,12 @@ $brand-grad: linear-gradient(180deg, #479EEB 0%, #3788D0 100%);
929929
.cal-speaker { font-weight: 600; color: $body; }
930930
.cal-sep { color: #c9d2dd; }
931931
}
932+
// delivery language — only rendered where a talk sets it
933+
.cal-lang {
934+
font-size: 10.5px; font-weight: 700; letter-spacing: .03em;
935+
padding: 2px 7px; border-radius: 999px;
936+
background: #f2f4f7; color: #5b6573;
937+
}
932938
.cal-talk-intro {
933939
font-size: 13px; color: $body; line-height: 1.6; margin: 5px 0 0;
934940
max-width: 68ch;

data/talks.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636
# intro optional one or two sentences on what the session covers, in the
3737
# same language as the title. Condense the published
3838
# abstract; do not invent one where none exists.
39+
# lang optional the language the session is delivered in, e.g. "中文" or
40+
# "English". Only worth setting when it is not obvious from
41+
# the title, or when the same talk is given in both — a
42+
# speaker may take one session to two events in different
43+
# languages.
3944
# date optional "YYYY-MM-DD" when the session day differs from `start`
4045
# time optional e.g. "13:30 GMT+8"
4146
# room optional
@@ -54,6 +59,21 @@ events:
5459
talks:
5560
- title: "Beyond Flat Topologies: Visualizing the Cloud-Native Stack in 3D"
5661
speaker: 吴晟 Sheng Wu
62+
lang: English
63+
64+
- event: 2026 亚马逊云科技 Community Day · 深圳
65+
intro: >-
66+
The AWS User Group's annual community conference in Shenzhen, themed "Bridge with Signal · 以价值信号连通现在与未来" — a full day of 20+ community talks across four parallel tracks, run by and for local developers.
67+
start: "2026-10-17"
68+
location: Shenzhen, China
69+
url: https://2026-autumn.awscommunityday.cn/
70+
talks:
71+
# Same session as AWS Community Day Hong Kong a week later, delivered in Chinese.
72+
# The Shenzhen agenda is not published yet, so the title here is the English one
73+
# the session is already listed under; swap in the Chinese title once it is out.
74+
- title: "Beyond Flat Topologies: Visualizing the Cloud-Native Stack in 3D"
75+
speaker: 吴晟 Sheng Wu
76+
lang: 中文
5777

5878
- event: Community Over Code Asia 2026
5979
intro: >-

layouts/events/calendar.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ <h3 class="cal-title">
237237
</p>
238238
<p class="cal-talk-sub">
239239
<span class="cal-speaker">{{ .speaker }}</span>
240+
{{ with .lang }}<span class="cal-lang">{{ . }}</span>{{ end }}
240241
{{ with .date }}<span class="cal-sep">·</span><span>{{ (time.AsTime .).Format "Jan 2" }}</span>{{ end }}
241242
{{ with .time }}<span class="cal-sep">·</span><span>{{ . }}</span>{{ end }}
242243
{{ with .room }}<span class="cal-sep">·</span><span>{{ . }}</span>{{ end }}

0 commit comments

Comments
 (0)