Kilt templating interface helpers for Kemal
Since Kemal 1.2 Kilt removed as dependency in kemalcr/kemal#618
This shard restores removed functionality.
-
Add the dependency to your
shard.yml
:dependencies: kemal-kilt: github: crystal-garage/kemal-kilt # For slang, add: slang: github: jeromegn/slang # Any other template languages Crystal shard
-
Run
shards install
require "kemal"
require "kemal-kilt"
# For slang, add:
require "kilt/slang"
get "/:name" do |env|
name = env.params.url["name"]
render "src/views/index.slang"
end
doctype html
html
head
title This is a title
body
| Hello #{name}
KEMAL_ENV=test crystal spec
- Fork it (https://github.com/crystal-garage/kemal-kilt/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Anton Maminov - creator and maintainer