Skip to content

Instantly share code, notes, and snippets.

@onliniak
Last active September 29, 2019 17:41
Show Gist options
  • Save onliniak/a2c2a88ede48acc45afa558b367a4b83 to your computer and use it in GitHub Desktop.
Save onliniak/a2c2a88ede48acc45afa558b367a4b83 to your computer and use it in GitHub Desktop.
Slim template engine in Roda framework
class Test < Roda
plugin :render, engine: 'slim'
route do |r|
r.get 'test' do
view :hello
end
r.root do
'Home, Sweet Home'
end
end
end
require 'roda'
require File.expand_path('app', File.dirname(__FILE__))
run Test.app
b test test test
doctype html
html
head
meta charset="UTF-8"
body
==yield
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment