diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/build.rb b/scripts/build.rb index 4ce84d2..ab3a254 100755 --- a/scripts/build.rb +++ b/scripts/build.rb @@ -25,15 +25,18 @@ statics = [ '.well-known/acme-challenge/Tw4EQEgfzPP6garbkCV5pQJaJiOLhJYbuTbfPyFElcI', '.well-known/keybase.txt', 'key.asc', - 'favicon.ico' + 'favicon.ico', + 'button.gif' ] P.add 'key', 'key.asc' P.add 'style', 'style.css' +P.add 'button', 'button.gif' P.add 'index', 'index.html' P.add 'contact', 'contact.html' P.add 'blog', 'blog.html' +P.add 'links', 'links.html' P.add 'projects', 'projects.html' P.add 'donate', 'donate.html' P.add 'rss', 'rss.xml' @@ -51,6 +54,7 @@ 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_templated_erb 'links.html.erb', title: 'Links.' write_blog_archive write_templated_file 'donate.html', title: 'Donations.' |