diff --git a/assets/monero_receive.png b/assets/monero_receive.png new file mode 100644 index 0000000..b23cd79 Binary files /dev/null and b/assets/monero_receive.png differ diff --git a/config.yaml b/config.yaml index a44189b..a8eeaad 100644 --- a/config.yaml +++ b/config.yaml @@ -14,3 +14,7 @@ nav: - name: contact icon: mail endpoint: contact + + - name: buy me a coffee + icon: dollar-sign + endpoint: donate diff --git a/icons/dollar-sign.svg b/icons/dollar-sign.svg new file mode 100644 index 0000000..1a124d2 --- /dev/null +++ b/icons/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/pages/donate/main.j2 b/pages/donate/main.j2 new file mode 100644 index 0000000..be60dee --- /dev/null +++ b/pages/donate/main.j2 @@ -0,0 +1,15 @@ +{% with %} + {% set page = "donate" %} + {% set title = "Buy me a coffee" %} + {% include "header.j2" %} +{% endwith %} + +If for whatever reason you want to send me some money, you can do so with +Monero. + + + +{% include "footer.j2" %} diff --git a/sass/donate.scss b/sass/donate.scss new file mode 100644 index 0000000..d409403 --- /dev/null +++ b/sass/donate.scss @@ -0,0 +1,12 @@ +.donate { + padding: 20px; + width: 90%; + text-align: center; + code { + font-size: smaller; + word-wrap: break-word; + } + img { + padding: 10px; + } +} diff --git a/sass/main.scss b/sass/main.scss index 6a2729a..f1a6d83 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -2,3 +2,4 @@ @import "style"; @import "jobs"; @import "contacts"; +@import "donate";