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

10
build.rb Normal file
View file

@ -0,0 +1,10 @@
require "phlex"
require "phlexite"
require_relative "pages/layout"
require_relative "pages/home"
Phlexite::Site.new { |s|
s.mount "assets", on: "/"
s.page "index.html", Pages::Home.new
}