cmc/cleberg.net

My personal web garden & blog.

clone: git clone https://gitbay.org/cmc/cleberg.net.git

60f3c50fd35779ecca484cda4b09b9694650c028

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2026-02-05T23:52:25Z

add /tips page
 content/tips/index.org    | 18 ++++++++++++++++++
 publish.el                |  8 ++++++++
 theme/templates/base.html |  3 ++-
 3 files changed, 28 insertions(+), 1 deletion(-)

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>