diff --git a/src/templates/src/jam_2023_visibility.html b/src/templates/src/jam_2023_visibility.html index dd874a8..a1b7ec0 100644 --- a/src/templates/src/jam_2023_visibility.html +++ b/src/templates/src/jam_2023_visibility.html @@ -16,75 +16,77 @@ $discordInviteURL := "https://discord.gg/hmn" }} } -
- -

Visibility Jam

-

April 14 - 16, 2O23

-
- See things in a new way. - {{ if gt .DaysUntilEnd 0 }} - {{ if eq .DaysUntilStart 0 }} - Happening now. - {{ else if eq .DaysUntilStart 1 }} - Starting tomorrow. - {{ else }} - Starting in {{ .DaysUntilStart }} days. - {{ end }} - {{ end }} -
-
- {{ if gt .DaysUntilStart 0 }} - Get inspired - {{ else if gt .DaysUntilEnd 0 }} - {{ if .SubmittedProjectUrl }} +
+
+ +

Visibility Jam

+

April 14 - 16, 2O23

+
+ See things in a new way. + {{ if gt .DaysUntilEnd 0 }} + {{ if eq .DaysUntilStart 0 }} + Happening now. + {{ else if eq .DaysUntilStart 1 }} + Starting tomorrow. + {{ else }} + Starting in {{ .DaysUntilStart }} days. + {{ end }} + {{ end }} +
+
+ {{ if gt .DaysUntilStart 0 }} Share your progressGet inspired - {{ else }} + {{ else if gt .DaysUntilEnd 0 }} + {{ if .SubmittedProjectUrl }} + Share your progress + {{ else }} + Create your project + {{ end }} + {{ else }} Create your projectSee the results - {{ end }} - {{ else }} - See the results - {{ end }} - Join the Discord -
-
+ target="_blank" + href="{{ $discordInviteURL }}" + >Join the Discord +
+
-
-

- Too many things in computing are invisible. -

-

- Bugs linger for years because nobody can see their effects. We run arcane command line tools just to find out what port a program is using. Your computer is full of helpful information, but no one can use it until someone makes it visible. -

-

- So for this jam, make it visible. Maybe it's a data structure in your program. Maybe it's some obscure metrics from your operating system. Maybe it's your sleep schedule. Whether you make a Graphviz diagram or an experimental code editor, you have a weekend to make it happen. -

+
+

+ Too many things in computing are invisible. +

+

+ Bugs linger for years because nobody can see their effects. We run arcane command line tools just to find out what port a program is using. Your computer is full of helpful information, but no one can use it until someone makes it visible. +

+

+ So for this jam, make it visible. Maybe it's a data structure in your program. Maybe it's some obscure metrics from your operating system. Maybe it's your sleep schedule. Whether you make a Graphviz diagram or an experimental code editor, you have a weekend to make it happen. +

+
{{ if eq .DaysUntilEnd 0 }} -
+

Submitted projects

@@ -100,7 +102,7 @@ $discordInviteURL := "https://discord.gg/hmn" }}
{{ else if and (eq .DaysUntilStart 0) (not (eq .ShowcaseJson "[]")) }} -
+
{{ if gt .DaysUntilEnd 0 }}

Recent updates

@@ -239,7 +241,7 @@ $discordInviteURL := "https://discord.gg/hmn" }} {{ end }} -
+

Inspiration

@@ -374,7 +376,7 @@ $discordInviteURL := "https://discord.gg/hmn" }}
-
+

Rules

    diff --git a/src/templates/src/jam_2023_vj_feed.html b/src/templates/src/jam_2023_vj_feed.html index 8838dfa..f0b60ee 100644 --- a/src/templates/src/jam_2023_vj_feed.html +++ b/src/templates/src/jam_2023_vj_feed.html @@ -12,11 +12,11 @@

    Visibility Jam

    -

    April 14 - 16, 2023

    +

    April 14 - 16, 2O23

    See things in a new way.
    -
    +
    {{ if eq .DaysUntilEnd 0 }} diff --git a/src/templates/src/layouts/jam_2023_visibility_base.html b/src/templates/src/layouts/jam_2023_visibility_base.html index 73663fb..c7de2d7 100644 --- a/src/templates/src/layouts/jam_2023_visibility_base.html +++ b/src/templates/src/layouts/jam_2023_visibility_base.html @@ -333,6 +333,10 @@ background-color: {{ $themeDimmest }}; background-color: var(--theme-color-dimmest); } + + .jam-sections > div:nth-of-type(even) { + background-color: rgba(0, 0, 0, 0.2); + } @@ -344,7 +348,9 @@ {{ template "header.html" . }}
    - {{ block "content" . }}{{ end }} +
    + {{ block "content" . }}{{ end }} +
    {{ template "footer.html" . }} diff --git a/src/website/jam.go b/src/website/jam.go index 37a2935..b0dd223 100644 --- a/src/website/jam.go +++ b/src/website/jam.go @@ -104,7 +104,7 @@ func JamIndex2023_Visibility(c *RequestContext) ResponseData { EndTimeUnix: hmndata.VJ2023.EndTime.Unix(), ProjectSubmissionUrl: hmnurl.BuildProjectNewJam(), SubmittedProjectUrl: submittedProjectUrl, - ShowcaseFeedUrl: hmnurl.BuildJamFeed2022(), + ShowcaseFeedUrl: hmnurl.BuildJamFeed2023_Visibility(), ShowcaseJson: showcaseJson, JamProjects: pageProjects, }, c.Perf)