Static site generator in Clojure, inspired by Jekyll
; @layout default ; @title blog sample (header (:title site) "Welcome to my blog") (h1 "Posts") (post-list)
powered by impress.js
; @layout impress ; @title presen sample (slide (h1 "hello world")) (group {:rotate 90} (slide {:x 10 :y 20} "foo") (slide {:scale 2} "bar"))
misaki supports clostache as compiler plugin.
; @layout default ; @title sample title <h1>{{title}}</h1> <h2>posts</h2> <ul> {{#posts}} <li><a href="{{url}}">{{date}} - {{title}}</a></li> {{/posts}} </ul>