aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2023-06-27 16:11:30 +0200
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-06-27 16:11:30 +0200
commit02f2fd35c0087d753deeb19b8fdc8dd0d94c63ae (patch)
treefea85e7d3d8392ae1d4d6f02a33b948fdc36f72b
parent0d5dc3da249b8473c2eaff7f24270f462b3b6f8e (diff)
fix: Change personal projects links
-rw-r--r--haunt.scm17
1 files changed, 8 insertions, 9 deletions
diff --git a/haunt.scm b/haunt.scm
index f4289a3..83bbfdd 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -67,7 +67,7 @@
(project
#:name "tubo"
#:synopsis "An alternative web front-end to various streaming sites"
- #:link "https://git.mianmoreno.com/tubo"
+ #:link (format #f "https://github.com/~a/tubo" %username)
#:tags '("clojure" "clojurescript" "privacy")
#:license "GPL-3.0+"
#:description
@@ -100,7 +100,7 @@ downloads, offline mode, and more.")
(project
#:name "nx-router"
#:synopsis "A general-purpose routing extension for the Nyxt browser"
- #:link "https://git.mianmoreno.com/nx-router"
+ #:link (format #f "https://github.com/~a/nx-router" %username)
#:tags '("common-lisp" "nyxt" "browser")
#:license "BSD 3-Clause"
#:description
@@ -129,7 +129,7 @@ with unmaintained instances of privacy frontends.")
(project
#:name "nx-tailor"
#:synopsis "A theme manager for the Nyxt browser"
- #:link "https://git.mianmoreno.com/nx-tailor"
+ #:link (format #f "https://github.com/~a/nx-tailor" %username)
#:tags '("common-lisp" "nyxt" "browser")
#:license "BSD 3-Clause"
#:description
@@ -149,7 +149,7 @@ depending on the time of the day.")
(project
#:name "fdroid.el"
#:synopsis "An Emacs interface to the F-Droid package repository"
- #:link "https://git.mianmoreno.com/fdroid.el"
+ #:link (format #f "https://github.com/~a/fdroid.el" %username)
#:tags '("emacs" "emacs-lisp" "fdroid")
#:license "GPL-3.0+"
#:description
@@ -162,7 +162,7 @@ having to download APKs manually.")))
(project
#:name "nyxt.el"
#:synopsis "A minimal API to interact with the Nyxt browser from Emacs"
- #:link "https://git.mianmoreno.com/nyxt.el"
+ #:link (format #f "https://github.com/~a/nyxt.el" %username)
#:tags '("emacs" "emacs-lisp" "nyxt")
#:license "GPL-3.0+"
#:description
@@ -173,7 +173,7 @@ Emacs X Window Manager (EXWM).")))
(project
#:name "dotfiles"
#:synopsis "Personal configuration based on top of RDE and GNU Guix"
- #:link "https://git.mianmoreno.com/dotfiles"
+ #:link (format #f "https://github.com/~a/dotfiles" %username)
#:tags '("guix" "rde" "dotfiles")
#:license "GPL-3.0+"
#:description
@@ -187,7 +187,7 @@ packages, services, and features upstream as much as I can.")))
(project
#:name "blog"
#:synopsis "Personal site and blog"
- #:link "https://git.mianmoreno.com/blog"
+ #:link (format #f "https://github.com/~a/blog" %username)
#:tags '("scheme" "org-mode" "haunt")
#:license "GPL-3.0+"
#:description
@@ -328,8 +328,7 @@ describe my personal projects and contributions.")))))
(div (@ (class "project__metadata"))
(span (@ (class "project__metadata-items"))
(i (@ (class "fa-brands fa-git-alt project__icon")))
- ,(anchor (project-link project)
- (string-append (project-link project) "/about")
+ ,(anchor (project-link project) (project-link project)
#:external? #t))
(span (@ (classs "project__metadata-items"))
(i (@ (class "fa-solid fa-file-lines project__icon")))