diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-03-11 00:14:34 +0100 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-03-11 00:14:34 +0100 |
commit | f1f0cf6203a40d185afea04069d01dd72a5cc8be (patch) | |
tree | 549ac7d7017a2d53743a4fa55eb7ace304a2ee42 /scripts | |
parent | f510b46302e3d0ab05424b33ed7cf2ccaaefa904 (diff) |
Add crypto addresses
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 df9fa2f..b88dad1 100755 --- a/scripts/build.rb +++ b/scripts/build.rb @@ -33,6 +33,7 @@ P.add 'style', 'style.css' P.add 'index', 'index.html' P.add 'blog', 'blog.html' P.add 'projects', 'projects.html' +P.add 'crypto', 'crypto.html' P.add 'rss', 'rss.xml' if !Dir.exists? 'public/blog' @@ -47,6 +48,7 @@ write_statics statics write_templated_erb 'index.html.erb', title: 'Martin Chrzanowski.' write_templated_erb 'projects.html.erb', title: 'Projects.' write_blog_archive +write_templated_file 'crypto.html', title: 'Crypto addresses.' P.cd 'blog' |