diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2018-09-05 17:17:35 -0400 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2018-09-05 17:17:35 -0400 |
commit | 6898959fce6d73b14d929afa3ef4f98451d479cb (patch) | |
tree | 54f817d6d31aa9a6d78fceccc43292bbdec4eef5 /_includes/header.html | |
parent | d1446c6d6fd0d7f8ccce74960a80981399221fa9 (diff) |
implement displaying qr codes for crypto donations
Diffstat (limited to '_includes/header.html')
-rw-r--r-- | _includes/header.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/_includes/header.html b/_includes/header.html index 7eafb53..1ae8734 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,12 +1,14 @@ <header id="title-header" role="banner"> <div class="row row-vertically-centered"> - <div class="eight columns"> + <div class="five columns"> <h1 class="title"> <a href="{{ "/" | relative_url }}">{{ site.title | escape }}</a> </h1> </div> - <div class="four columns light"> + <div id="crypto-display" class="four columns"></div> + + <div class="three columns light"> <div class="social"> <span class="spaced">RSS/Social:</span> <a class="spaced" href="{{ 'feed.xml' | relative_url }}"> @@ -22,15 +24,15 @@ <div class="donation"> <span>If you like what I do, consider donating!</span><br/> <span> - <a href="https://cash.me/$mediocregopher">USD</a> + <a href="https://cash.me/$mediocregopher" target="_blank">USD</a> • - <a href="bitcoin:1KSqgPBQ7VWc5yxUT2DsB3VpsvRyahL2k8">BTC</a> + <a class="crypto" href="bitcoin:18kqNYjUZ4zNEp4VjE3pKPLBitUy6U76rk">BTC</a> • - LTC + <a class="crypto" href="litecoin:LZgyna6Nw4phzWv24QP4xgUi7hC9DDHV7o">LTC</a> • - ETH + <a class="crypto" href="ethereum:0xB8e1608059174760f4652178303f7c7a59121922">ETH</a> • - ZEC + <a class="crypto" href="zcash:zcMmjd2gNetan9QciRExVdTb64ZEYPjk8w6NiEXnLRcDbVQQxZ9xvKH3Ab3y7uccCrN5HRvR5YVvq684gC1drvnYadp3Yz2">ZEC</a> </span> </div> </div> |