Try adding docs
Some checks failed
/ build (push) Successful in 1m33s
Ruby / Ruby 3.3.5 (push) Failing after 14s

This commit is contained in:
Aleks Rutins 2025-06-10 18:11:38 -04:00
parent 15c0a1ccc0
commit 04e1d9eb91
Signed by: asr
SSH key fingerprint: SHA256:DBype7RrB3qCdOLdkvecD2Y3THOYgYOVw6jAHVgsGRQ
10 changed files with 144 additions and 74 deletions

13
docs/build.rb Normal file
View file

@ -0,0 +1,13 @@
require_relative '../lib/phlexite'
require 'phlex'
module Phlexite
module Docs end
end
require_relative 'pages/layout'
require_relative 'pages/index'
Phlexite::Site.new { |s|
s.page 'index.html', Phlexite::Docs::Pages::Index.new
}