diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-12-29 23:25:52 +0100 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-12-29 23:39:31 +0100 |
commit | 387ca927f11138b220366ffabe556783ebe2ad68 (patch) | |
tree | f7483b0186b9222e692ce62f0a4ac7bca148035d /scripts | |
parent | efa31fe05fe9c6ffd3bc26a2ee8067d8a8949888 (diff) |
Add about page
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build.rb b/scripts/build.rb index 1e4e30c..ee86b81 100644 --- a/scripts/build.rb +++ b/scripts/build.rb @@ -20,6 +20,7 @@ P = Pather.new P.add 'index', 'index.html' P.add 'style', 'style.css' +P.add 'about', 'about.html' P.add 'songbook', 'śpiewnik-tuturutu.pdf' songs.each_key do |song_id| @@ -29,6 +30,7 @@ songs.each_key do |song_id| end write_templated_erb 'index.html.erb' +write_templated_file 'about.html', 'O Śpiewniku' write_statics statics P.cd SongsDir |