diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-12-03 20:21:40 -0500 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-12-03 20:21:40 -0500 |
| commit | 0294d7e97f69170968864e94d0c3639dae5cfc48 (patch) | |
| tree | 6cf35e879b57144a6bf681d8ad3248d90f091002 | |
| parent | dce2e132e00ba25cc87a575d89f544b1ab937c49 (diff) | |
About page CSS fix
| -rw-r--r-- | haunt/pages/about.sxml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/haunt/pages/about.sxml b/haunt/pages/about.sxml index d8b7f74..d089dfd 100644 --- a/haunt/pages/about.sxml +++ b/haunt/pages/about.sxml @@ -159,15 +159,15 @@ Linux.") (define (lang-to-button lang) (case lang - ((c) '(button (@ (class "lang-c")) "C")) - ((c++) '(button (@ (class "lang-cpp")) "C++")) - ((python) '(button (@ (class "lang-python")) "Python")) - ((rust) '(button (@ (class "lang-rust")) "Rust")) - ((kotlin) '(button (@ (class "lang-kotlin")) "Kotlin")) - ((fennel) '(button (@ (class "lang-fennel")) "Fennel")) - ((elisp) '(button (@ (class "lang-elisp")) "Elisp")) - ((scheme) '(button (@ (class "lang-scheme")) "Scheme")) - ((ebuild) '(button (@ (class "lang-ebuild")) "Ebuild")))) + ((c) '(button (@ (class "lang lang-c")) "C")) + ((c++) '(button (@ (class "lang lang-cpp")) "C++")) + ((python) '(button (@ (class "lang lang-python")) "Python")) + ((rust) '(button (@ (class "lang lang-rust")) "Rust")) + ((kotlin) '(button (@ (class "lang lang-kotlin")) "Kotlin")) + ((fennel) '(button (@ (class "lang lang-fennel")) "Fennel")) + ((elisp) '(button (@ (class "lang lang-elisp")) "Elisp")) + ((scheme) '(button (@ (class "lang lang-scheme")) "Scheme")) + ((ebuild) '(button (@ (class "lang lang-ebuild")) "Ebuild")))) (define (date-of-first-commit repository-path) "Return the date of the first commit in `repository-path'." |