Last active
September 29, 2019 17:41
-
-
Save onliniak/a2c2a88ede48acc45afa558b367a4b83 to your computer and use it in GitHub Desktop.
Slim template engine in Roda framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'roda' | |
require File.expand_path('app', File.dirname(__FILE__)) | |
run Test.app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b test test test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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