diff options
-rwxr-xr-x | scripts/build.rb | 2 | ||||
-rw-r--r-- | src/crypto.html | 15 | ||||
-rw-r--r-- | src/index.html.erb | 4 |
3 files changed, 19 insertions, 2 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' diff --git a/src/crypto.html b/src/crypto.html new file mode 100644 index 0000000..ee96e3b --- /dev/null +++ b/src/crypto.html @@ -0,0 +1,15 @@ +<p>BTC: <code>15CRCVx5okbTDwU6M4kmA1JGTimtFkZFak</code> </p> + +<p>ETH and Ethereum tokens: <code>0x8370f8De24c4Dc0459CF22DAaAe259f89A03e626</code> +</p> + +<p>CELO and Celo tokens: <code>0x207a9efcf1114f7cbc110526689f9cb417a7bfc8</code> +</p> + +<p>DOGE: <code>DDBsGmC5L55LUAUoHZAZJkb12m1ZUetTBS</code> </p> +<p> +XMR: +<code> + 3a9nnjbS38daKSM7reXJE3CydjZMxdj6Yu4YLvP1zN7TfrHGBjiEKy6PPAuznSYpG6Af1ip6qBkn85Lahtqj7fZVQKMdJu +</code> +</p> diff --git a/src/index.html.erb b/src/index.html.erb index 122d6c2..536b15a 100644 --- a/src/index.html.erb +++ b/src/index.html.erb @@ -18,9 +18,9 @@ <hr /> <ul class='links'> <li><a href='mailto:<%= Email %>'>Email</a></li> - <li><a href=<%= path_to 'key'%>>PGP</a></li> + <li><a href='<%= path_to 'key' %>'>PGP</a></li> <li> <a href='https://git.m-chrzan.xyz'>Code</a> </li> - <li><a href='https://linkedin.com/in/marcin-chrzanowski'>LinkedIn</a></li> + <li><a href='<%= path_to 'crypto' %>'>Crypto</a></li> </ul> |