Really, I think Hiccup is the best solution in this space. Prefer logic-less functions to output html strings? Hiccup has this use case covered. This is all stock Clojure[script], not a templating language: (def foo [:h2 "something cool"]) (hiccup.core/html foo) ;;=> " something cool " Plus there's plenty of ways to quickly build up a bootstrap (, etc) page. (defn bootstrap-page [hiccup-form] (hiccup.page/html5 (hicc…
Re: Show HN: Polly: A templating language for Rust
#21Hiccup is wonderful, almost makes it painful to go back to jade/erb/jinja/etc after working on a project with hiccup.