From 621b6327bc0460ce2d6c65e9e5fa8d6da532e05d Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Fri, 17 Mar 2023 11:35:55 -0700 Subject: [PATCH] Switch user group to PDT timezone. --- events.fnl | 2 +- html.fnl | 1 + main.fnl | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/events.fnl b/events.fnl index ace93f2..2b4de40 100644 --- a/events.fnl +++ b/events.fnl @@ -36,7 +36,7 @@ [:h2 {:id "user-group"} "Fennel User Group"] [:p {} "There is an official Fennel user group that meets on " - "the third Saturday of each month at 10:00 PST/18:00 UTC. " + "the third Saturday of each month at 10:00 PDT/17:00 UTC. " "All are welcome regardless of " "familiarity with Fennel or technical skill."] [:p {} diff --git a/html.fnl b/html.fnl index 29952e1..b794dd4 100644 --- a/html.fnl +++ b/html.fnl @@ -45,6 +45,7 @@ (fn html [document allow-unescaped?] (if (= (type document) :string) (escape document) + (not document) "" ; discard false values (and allow-unescaped? (= (. document 1) unescaped)) (. document 2) (let [[tag-name attrs & body] document] diff --git a/main.fnl b/main.fnl index 514082b..755f142 100644 --- a/main.fnl +++ b/main.fnl @@ -12,7 +12,7 @@ :href "https://code.cdn.mozilla.net/fonts/fira.css"}] [:title {} "the Fennel programming language"]] [:body {} - [:h1 {} "Fennel" [:img {:src "logo.svg"}]] + [:h1 {} "Fennel" [:img {:src "logo.svg" :alt "fennel logo"}]] [:p {} "Fennel is a programming language that brings together " "the speed, simplicity, and reach of" [:a {:href "https://www.lua.org"} "Lua"] -- 2.38.5