phlexite/docs/pages/index.rb
Aleks Rutins 04e1d9eb91
Some checks failed
/ build (push) Successful in 1m33s
Ruby / Ruby 3.3.5 (push) Failing after 14s
Try adding docs
2025-06-10 18:11:38 -04:00

10 lines
No EOL
267 B
Ruby

module Phlexite::Docs::Pages
class Index < ::Phlex::HTML
def view_template
render Layout.new {
h1 { 'Phlexite' }
p { 'Phlexite is a simple static site generator for Ruby.' }
}
end
end
end