diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-12-12 22:21:09 +0100 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-12-12 22:21:09 +0100 |
commit | 8d202330d225ef44008f1f2cd7bb18901721889f (patch) | |
tree | 5d35d2bf9b90c8c69a16cd0db3384b33fab34e82 /scripts | |
parent | 7a8f0e7cbdb52b7414491aa486a4335d37a1d24f (diff) |
Move contact info to separate page, add XMPP
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build.rb b/scripts/build.rb index 5063eb6..4ce84d2 100755 --- a/scripts/build.rb +++ b/scripts/build.rb @@ -32,6 +32,7 @@ P.add 'key', 'key.asc' P.add 'style', 'style.css' P.add 'index', 'index.html' +P.add 'contact', 'contact.html' P.add 'blog', 'blog.html' P.add 'projects', 'projects.html' P.add 'donate', 'donate.html' @@ -49,6 +50,7 @@ end write_statics statics write_templated_erb 'index.html.erb', title: 'Martin Chrzanowski.' write_templated_erb 'projects.html.erb', title: 'Projects.' +write_templated_erb 'contact.html.erb', title: 'Contact.' write_blog_archive write_templated_file 'donate.html', title: 'Donations.' |