Création initiale du projet Amber

This commit is contained in:
2018-09-03 23:08:32 +02:00
parent a2c4523880
commit 6d4cadc2ae
35 changed files with 781 additions and 2 deletions

View File

@ -0,0 +1,6 @@
require "jasper_helpers"
class ApplicationController < Amber::Controller::Base
include JasperHelpers
LAYOUT = "application.slang"
end

View File

@ -0,0 +1,5 @@
class HomeController < ApplicationController
def index
render("index.slang")
end
end