Initial commit

This commit is contained in:
2023-05-31 20:18:05 -03:00
commit 1c54086cb0
9 changed files with 100 additions and 0 deletions

12
src/nicoletta.cr Normal file
View File

@ -0,0 +1,12 @@
# Nicoletta, a minimal static site generator.
reuire "yaml"
module Nicoletta
VERSION = "0.1.0"
tpl_data = File.open("conf") do |file|
YAML.parse(file)
end
p! tpl_data
end