diff --git a/content/english/boston/index.md b/content/english/boston/index.md index 417b359..50f2124 100644 --- a/content/english/boston/index.md +++ b/content/english/boston/index.md @@ -14,11 +14,21 @@ venue_address: "Columbia Point, Boston, MA 02125" coming_soon_text: "Agenda Coming Soon" coming_soon_description: "We're assembling an incredible roster. Check back often." +# Initial Speakers +initial_speakers: + - name: "Jim Calabro" + topic: "Senior Engineer at Bluesky" + affiliation: "calabro.io" + image: "/images/people/calabro.jpg" + # Call to Action Buttons enable_newsletter: true newsletter_link: "/news" enable_discord: true discord_link: "https://handmadecities.com/discord" +enable_cfp: true +cfp_link: "mailto:submissions@handmadecities.com" +cfp_deadline: "July 2, 2025" # Content Display show_description: true diff --git a/content/english/seattle/index.md b/content/english/seattle/index.md index f868f3f..2763182 100644 --- a/content/english/seattle/index.md +++ b/content/english/seattle/index.md @@ -20,8 +20,19 @@ event_features: - "Networking opportunities" # Coming Soon Section -coming_soon_text: "Agenda Coming Soon" -coming_soon_description: "We're assembling an incredible roster. Check back often." +coming_soon_text: "Full Agenda Coming Soon" +coming_soon_description: "We're still finalizing our complete schedule. Here's a preview of some confirmed speakers." + +# Initial Speakers +initial_speakers: + - name: "Taylor Robbins" + topic: "UI Tools Engineer" + affiliation: "Bungie (Makers of Destiny 2)" + image: "/images/people/robbins.jpg" + - name: "Benjamin Thompson" + topic: "Math PhD turned Puzzle Designer" + affiliation: "Cornell University" + image: "/images/people/thompson.webp" # Trade Show Information trade_show: @@ -36,7 +47,7 @@ newsletter_link: "/newsletter" enable_discord: true discord_link: "https://handmadecities.com/discord" enable_cfp: true -cfp_link: "/seattle/cfp" +cfp_link: "mailto:submissions@handmadecities.com" cfp_deadline: "August 15, 2025" # Previous Events diff --git a/layouts/_default/event.html b/layouts/_default/event.html index 143acf5..80ba445 100644 --- a/layouts/_default/event.html +++ b/layouts/_default/event.html @@ -42,10 +42,37 @@ -
+

{{ .Params.coming_soon_text | default "Schedule Coming Soon" }}

{{ .Params.coming_soon_description | default "We're finalizing an amazing lineup of speakers and workshops." }}

+ + + {{ if .Params.initial_speakers }} +
+

Initial Lineup

+
+ {{ range .Params.initial_speakers }} +
+ {{ if .image }} + {{ .name }} + {{ else }} +
+ +
+ {{ end }} +
+

{{ .name }}

+

{{ .topic }}

+ {{ if .affiliation }} +

{{ .affiliation }}

+ {{ end }} +
+
+ {{ end }} +
+
+ {{ end }}
@@ -61,6 +88,12 @@ Join Our Discord {{ end }} + + {{ if .Params.enable_cfp }} + + Submit a Talk + + {{ end }} diff --git a/static/images/people/calabro.jpg b/static/images/people/calabro.jpg new file mode 100644 index 0000000..3b7fe64 Binary files /dev/null and b/static/images/people/calabro.jpg differ diff --git a/static/images/people/robbins.jpg b/static/images/people/robbins.jpg new file mode 100644 index 0000000..9209291 Binary files /dev/null and b/static/images/people/robbins.jpg differ diff --git a/static/images/people/thompson.webp b/static/images/people/thompson.webp new file mode 100644 index 0000000..9cd8624 Binary files /dev/null and b/static/images/people/thompson.webp differ