diff --git a/clojure/resources/firn/_firn_starter/pages/tags.clj b/clojure/resources/firn/_firn_starter/pages/tags.clj index 2db36070..d38d4a53 100644 --- a/clojure/resources/firn/_firn_starter/pages/tags.clj +++ b/clojure/resources/firn/_firn_starter/pages/tags.clj @@ -1,8 +1,8 @@ (defn tags - [{:keys [build-url render partials]}] + [{:keys [render partials] :as config}] (let [{:keys [head]} partials] [:html - (head build-url) + (head config) [:body [:main [:article.def-wrapper diff --git a/clojure/resources/firn/_firn_starter/partials/head.clj b/clojure/resources/firn/_firn_starter/partials/head.clj index 2d48cb79..b5023717 100644 --- a/clojure/resources/firn/_firn_starter/partials/head.clj +++ b/clojure/resources/firn/_firn_starter/partials/head.clj @@ -1,10 +1,9 @@ (defn head [{:keys [build-url site-title site-author site-desc]}] - [:html - [:head - [:meta {:charset "utf-8"}] - [:meta {:name "viewport" :content "width=device-width, initial-scale=1.0"}] - [:meta {:name "author" :content site-author}] - [:meta {:name "description" :content site-desc}] - [:title site-title] - [:link {:rel "stylesheet" :href (build-url "/static/css/firn_base.css")}]]]) + [:head + [:meta {:charset "utf-8"}] + [:meta {:name "viewport" :content "width=device-width, initial-scale=1.0"}] + [:meta {:name "author" :content site-author}] + [:meta {:name "description" :content site-desc}] + [:title site-title] + [:link {:rel "stylesheet" :href (build-url "/static/css/firn_base.css")}]])