Your browser doesn't support the features required by impress.js, so you are presented with a simplified version of this presentation.

For the best experience please use the latest Chrome, Safari or Firefox browser.

misaki

Static site generator in Clojure, inspired by Jekyll

What is advantage?

Blog

; @layout default
; @title  blog sample
(header (:title site)
        "Welcome to my blog")
(h1 "Posts")
(post-list)

Presentation

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"))

S-expression only ?

Switch compiler!

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>

Customize as you want !

Fork me on GitHub !