kemal/docs/views.md
2015-12-16 20:32:01 +02:00

15 lines
264 B
Markdown

# Views
You can use ERB-like built-in **ECR** views to render files.
```crystal
get '/:name' do
render "views/hello.ecr"
end
```
And you should have an `hello.ecr` view. It will have the same context as the method.
```erb
Hello <%= env.params["name"] %>
```