diff options
-rw-r--r-- | haunt.scm | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -265,12 +265,13 @@ make install"))) (h2 "License") (p ,license) (h2 "Source Code") - ,@(let ((url (string-append "https://git.dthompson.us/" repo ".git"))) + ,@(let ((web-url (string-append "https://git.dthompson.us/" repo ".git")) + (clone-url (string-append "git://dthompson.us/" repo ".git"))) `((p ,name " is developed using the Git version control system. The official repository is hosted at " - ,(anchor url url)) + ,(anchor web-url web-url)) (h3 "Anonymous clone") - (pre "git clone " ,url))) + (pre "git clone " ,clone-url))) (h2 "Community") (p "Real-time discussion for " ,name " can be found on the " (code "#guile") |