diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-04-08 21:28:16 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-04-08 21:28:16 -0500 |
commit | 9fb181ef3132576383452f35b2404b782d17a473 (patch) | |
tree | e2d630e9f6dedf6305bec9d83399eb46c62ff230 | |
parent | c92d7e9b5e4bf15af9b37726ebc7fa63fb2f50c1 (diff) | |
download | cleberg.net-9fb181ef3132576383452f35b2404b782d17a473.tar.gz cleberg.net-9fb181ef3132576383452f35b2404b782d17a473.tar.bz2 cleberg.net-9fb181ef3132576383452f35b2404b782d17a473.zip |
update git links
-rw-r--r-- | README.org | 6 | ||||
-rw-r--r-- | content/blog/2022-06-22-daily-poetry.org | 2 | ||||
-rw-r--r-- | content/services/index.org | 2 | ||||
-rw-r--r-- | theme/templates/base.html | 2 | ||||
-rw-r--r-- | theme/templates/index.html | 28 |
5 files changed, 28 insertions, 12 deletions
@@ -5,7 +5,7 @@ [[https://cleberg.net][cleberg.net]] is my personal webpage. -This README is viewable on [[https://git.cleberg.net/cleberg.net.git/tree/README.org][rgit]]. +This README is viewable on [[https://git.cleberg.net/?p=cleberg.net.git;a=blob;f=README.org;h=155f4696a09503411730afc422b7fb49acbef8f3;hb=HEAD][rgit]]. ** Overview @@ -23,7 +23,9 @@ Local testing can be done via [[https://www.gnu.org/software/emacs/][Emacs]] or To get running: #+begin_src shell -git clone https://git.cleberg.net/cleberg.net.git cd cleberg.net emacs -nw +git clone https://git.cleberg.net/cleberg.net.git && \ +cd cleberg.net && \ +emacs -nw #+end_src Within Emacs, open any of the repository files. In Doom, I do this with =Spc f diff --git a/content/blog/2022-06-22-daily-poetry.org b/content/blog/2022-06-22-daily-poetry.org index e150c8b..a24b3a2 100644 --- a/content/blog/2022-06-22-daily-poetry.org +++ b/content/blog/2022-06-22-daily-poetry.org @@ -6,7 +6,7 @@ * Source Code I don't want to bury the lede here, so if you'd like to see the full source code I use to email myself plaintext poems daily, visit the -repository: [[https://git.cleberg.net/daily-poem.git][daily-poem.git]]. +repository: [[https://git.cleberg.net/?p=daily-poem.git;a=summary][daily-poem.git]]. * My Daily Dose of Poetry Most of my programming projects are small, random projects that are made diff --git a/content/services/index.org b/content/services/index.org index b9ecca2..8f81758 100644 --- a/content/services/index.org +++ b/content/services/index.org @@ -13,4 +13,4 @@ - [[https://org.cleberg.net/][Org-Live]] - A basic org-mode editor for the web I built - [[https://search.cleberg.net/][SearXNG]] - A privacy-respecting, open metasearch engine -See the [[https://git.cleberg.net/cleberg.net.git/log][git log]] if you want to see changes that have been made. +See the [[https://git.cleberg.net/?p=cleberg.net.git;a=history;f=content/services/index.org;h=b9ecca2567a02711a33bb633d45f790610ed9214;hb=HEAD][git log]] if you want to see changes that have been made. diff --git a/theme/templates/base.html b/theme/templates/base.html index 167883c..0f01617 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -33,7 +33,7 @@ {% block footer %} <footer> <p>Last Build: <{{ now() | strftime("%Y-%m-%d %a %H:%M:%S") }}></p> - <p><a href="https://git.cleberg.net/cleberg.net.git" target="_blank" rel="noopener">Source Code</a></p> + <p><a href="https://git.cleberg.net/?p=cleberg.net.git;a=summary" target="_blank" rel="noopener">Source Code</a></p> <p><a href="/atom.xml">Atom RSS Feed</a></p> </footer> {% endblock %} diff --git a/theme/templates/index.html b/theme/templates/index.html index b2096dd..7f9e197 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -1,9 +1,9 @@ -{% extends "base.html" %} - -{% block main %} +{% extends "base.html" %} {% block main %} <section> <h1>cleberg.net</h1> - <blockquote>Do AIs dream in electric sheep?<br>He hoped it had nanosecond nightmares.</blockquote> + <blockquote> + Do AIs dream in electric sheep?<br />He hoped it had nanosecond nightmares. + </blockquote> </section> <section> <h2>Featured Posts</h2> @@ -19,7 +19,7 @@ <time datetime="2023-10-04"><2023-10-04></time> <a href="/blog/digital-minimalism.html">Digital Minimalism</a> </div> - <br> + <br /> <a href="/blog/">All Posts →</a> </section> <section> @@ -34,8 +34,22 @@ <h2>Contact</h2> <ul> <li>hello [at] cleberg.net (<a href="/gpg.txt">GPG</a>)</li> - <li><a href="https://matrix.to/#/@cyborg:matrix.tchncs.de" target="_blank" rel="noopener">@cyborg:@matrix.tchncs.de</a></li> - <li><a href="https://git.cleberg.net/cleberg.net.git" target="_blank" rel="noopener">Git</a></li> + <li> + <a + href="https://matrix.to/#/@cyborg:matrix.tchncs.de" + target="_blank" + rel="noopener" + >@cyborg:@matrix.tchncs.de</a + > + </li> + <li> + <a + href="https://git.cleberg.net/?p=cleberg.net.git;a=summary" + target="_blank" + rel="noopener" + >Git</a + > + </li> </ul> </section> {% endblock %} |