diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index dc17c78..a1f923e 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -69,6 +69,11 @@ text-decoration: underline; } +.frontpage-stream-container { + max-height: calc(75vh); + min-height: 36rem; + aspect-ratio: 16 / 9; +} .video-container { aspect-ratio: 16 / 9; diff --git a/content/english/_index.md b/content/english/_index.md index 557cdbb..f453fb5 100644 --- a/content/english/_index.md +++ b/content/english/_index.md @@ -7,6 +7,31 @@ banner: content: "We are the largest indie conferences for low-level programmers. This is your portal to meet with folks into graphics, game engines, kernels, compilers, and more!" image: "/images/hmc_spread.png" hide_banner_img: true + live_banner: + enable: true + use_twitch: true + use_youtube: false + title: "Handmade Seattle 2024" + title_class: "text-black dark:text-white mb-4" + twitch_channel: "abnercoimbre" + youtube_channel_id: "UCkiOutDcOG0KRLQc71Pd-Fg" # found at: https://www.youtube.com/account_advanced, is currently yt/handmadecities + section_class: "pb-24" + buttons_class: "p-2 px-3" + buttons_row_class: "mt-4 text-white gap-4" + buttons: + - title: "Join Private Chat" + link: "https://chat.handmadecities.com" + class: "btn seattle-bg" + - title: "Twitch" + link: "https://twitch.tv/abnercoimbre" + class: "btn meetups-bg" + icon_only: true + icon: "fa-brands fa-twitch" + - title: "YouTube" + link: "https://youtube.com/handmadecities" + class: "btn bg-[#ff0000]" + icon_only: true + icon: "fa-brands fa-youtube" triple_section: enable: true img_left: "/images/hmb/boston-light-mode.svg" diff --git a/content/english/jobs/_index.md b/content/english/jobs/_index.md new file mode 100644 index 0000000..b15258e --- /dev/null +++ b/content/english/jobs/_index.md @@ -0,0 +1,4 @@ +--- +title: "Jobs" +layout: under_construction +--- diff --git a/layouts/_default/under_construction.html b/layouts/_default/under_construction.html index 50e5574..b913a58 100644 --- a/layouts/_default/under_construction.html +++ b/layouts/_default/under_construction.html @@ -1,7 +1,7 @@ {{ define "main" }}
-

Under Construction

+

Under Construction

We're actively working on this bit!

diff --git a/layouts/partials/components/live_banner.html b/layouts/partials/components/live_banner.html new file mode 100644 index 0000000..aa038dd --- /dev/null +++ b/layouts/partials/components/live_banner.html @@ -0,0 +1,51 @@ +{{ with .live_banner }} +{{ if .enable }} +
+

{{ .title }}

+
+ + {{ if .use_twitch }} + +
+ + + + + + + {{ end }} + + {{ if .use_youtube }} +
+ +
+ + {{ end }} + + + {{ $button_global_class := .buttons_class }} + {{ $buttons_row_class := .buttons_row_class }} + {{ if .buttons }} + + {{ end }} + + +
+
+{{ end }} +{{ end }} \ No newline at end of file diff --git a/static/images/favicon/handmadecities-favicon-150.png b/static/images/favicon/handmadecities-favicon-150.png new file mode 100644 index 0000000..04f2b59 Binary files /dev/null and b/static/images/favicon/handmadecities-favicon-150.png differ diff --git a/static/images/favicon/handmadecities-logo.png b/static/images/favicon/handmadecities-logo.png new file mode 100644 index 0000000..a6d10ca Binary files /dev/null and b/static/images/favicon/handmadecities-logo.png differ