diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2024-03-01 09:03:48 +0100 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2025-06-15 01:30:22 +0200 |
| commit | 9691e00986236576b9b712e25573a742d81098c1 (patch) | |
| tree | 8de39829b3b0b25f6da3860b681c9c91569cd56c /website | |
| parent | 419e7cd9c2b4a1bed75e772069ebe39241013745 (diff) | |
| download | haunt-blog-9691e00986236576b9b712e25573a742d81098c1.tar.gz haunt-blog-9691e00986236576b9b712e25573a742d81098c1.tar.bz2 haunt-blog-9691e00986236576b9b712e25573a742d81098c1.zip | |
Fix generated html title.
Without that fix, the IceCat top bar shows the following text:
"Replicant status and report of the 37C3 and FOSDEM 2024
conferences. ? Replicant - GNU IceCat".
This fix makes sure a dash ('-') is displayed instead of the question
mark('?').
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'website')
| -rw-r--r-- | website/builders/replicant-blog.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/builders/replicant-blog.scm b/website/builders/replicant-blog.scm index 56b0d38..cab758c 100644 --- a/website/builders/replicant-blog.scm +++ b/website/builders/replicant-blog.scm @@ -48,7 +48,7 @@ (link (@ (rel "stylesheet") (href "static/twentyeleven-style-20231107.css"))) - (title ,(string-append title " — " (site-title site)))) + (title ,(string-append title " - " (site-title site)))) (body (header (nav |
