initial commit

This commit is contained in:
Aleks Rūtiņš 2024-09-09 06:52:00 -04:00
commit a7350363be
7 changed files with 77 additions and 0 deletions

7
pages/home.rb Normal file
View file

@ -0,0 +1,7 @@
class Pages::Home < ::Phlex::HTML
def view_template
render ::Pages::Layout.new("Home") {
h1 { "Home" }
}
end
end