Skip to content

Instantly share code, notes, and snippets.

@AlexBaranosky
Created September 12, 2014 04:23
Show Gist options
  • Save AlexBaranosky/b6551f92358d33fdd1a7 to your computer and use it in GitHub Desktop.
Save AlexBaranosky/b6551f92358d33fdd1a7 to your computer and use it in GitHub Desktop.
(require '[stencil.core :as s])
(def nav-links [{:url "a.html"
:text "Resume"}
{:url "b.html"
:text "Blog"}
{:url "c.html"
:text "About"}])
(defn nav [links]
(s/render-file "nav.mustache" {:links links}))
(defn page [content]
(s/render-file "page.mustache"
{:content content
:nav (nav nav-links)}))
(defn homepage []
(page "Welcome to my website!"))
(print (homepage))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment