aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-02-05 17:52:25 -0600
committerChristian Cleberg <[email protected]>2026-02-05 17:52:25 -0600
commit60f3c50fd35779ecca484cda4b09b9694650c028 (patch)
tree2323726806ac73e7da47a28efcfd94b3bb575d59
parent66510722ecff6bd4c827391295aa682dcf69e87e (diff)
downloadcleberg.net-60f3c50fd35779ecca484cda4b09b9694650c028.tar.gz
cleberg.net-60f3c50fd35779ecca484cda4b09b9694650c028.tar.bz2
cleberg.net-60f3c50fd35779ecca484cda4b09b9694650c028.zip
add /tips page
-rw-r--r--content/tips/index.org18
-rw-r--r--publish.el8
-rw-r--r--theme/templates/base.html3
3 files changed, 28 insertions, 1 deletions
diff --git a/content/tips/index.org b/content/tips/index.org
new file mode 100644
index 0000000..f572d58
--- /dev/null
+++ b/content/tips/index.org
@@ -0,0 +1,18 @@
+#+title: Tips
+#+slug: index
+
+Want to support me for whatever reason? Extra rich and want to throw money away?
+Look, I'm here for it. I have a crypto wallet and have set up sponsoring via
+GitHub for now. If you want to donate another way, shoot me a message.
+
+Feel free to send it my way.
+
+| Method | Address |
+|-------------------------+--------------------------------------------------------|
+| GitHub | https://github.com/sponsors/ccleberg |
+| Bitcoin (BTC) | bc1qy74tcth6zwg88059ae9z3ghzk797fkav7zdx4k |
+| Bitcoin Cash (BCH) | bitcoincash:qzvvluh0d9ersct2vsu0y7jvr3svl3vdsg2gatqjd5 |
+| Ethereum (ETH) + Tokens | 0x7850b2Fe6be94f90F54A099C74126430C9CeB19e |
+| Solana (SOL) + Tokens | 2574os7yg6AMwGqQ8nXYQvnyHyWWMME2ZVHdN4ca8bxC |
+| XRP | rJz78ahN1KmushjYjEnFd8CB5vCcreJ1EE |
+| zCash | t1VWTCXeR1EuzYXurbcnfa8NANZoM5YqcMo |
diff --git a/publish.el b/publish.el
index fa01331..325ce26 100644
--- a/publish.el
+++ b/publish.el
@@ -93,6 +93,14 @@
:output ".build/uses/{{ slug }}.html"
:url "/uses/{{ slug }}.html")
+;; Tips page route
+(weblorg-route
+ :name "tips"
+ :input-pattern "content/tips/*.org"
+ :template "page.html"
+ :output ".build/tips/{{ slug }}.html"
+ :url "/tips/{{ slug }}.html")
+
;; RSS feed route
(weblorg-route
:name "rss"
diff --git a/theme/templates/base.html b/theme/templates/base.html
index 50dc530..9f1c48e 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -35,7 +35,8 @@
<footer>
<a href="https://github.com/ccleberg/cleberg.net">SOURCE</a> &middot;
<a href="/feed.xml">RSS</a> &middot;
- <a href="http://sv3g2dlyvwyk2nvi3eeh55fcrpdvjlclhi6wwsx57cste6lwdjanzyyd.onion">ONION</a>
+ <a href="http://sv3g2dlyvwyk2nvi3eeh55fcrpdvjlclhi6wwsx57cste6lwdjanzyyd.onion">ONION</a> &middot;
+ <a href="/tips">Tips</a>
</footer>
</body>
</html>