summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2021-02-24 09:58:22 +0100
committerRicardo Wurmus <rekado@elephly.net>2021-02-24 09:58:22 +0100
commita3c4118ea01817c8dc9d99efdbaf9e1bd688e9e0 (patch)
tree07a1ed9aeba5222973c8072339594fb70f9bb189
parentba5b85e8613cca371e32e088d9672495c33e0c4c (diff)
Use HTTPS throughout.
-rw-r--r--haunt.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/haunt.scm b/haunt.scm
index 461d39b..57f3f88 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -40,24 +40,24 @@
`(div (@ (class "fineprint"))
(div (@ (class "license"))
(a (@ (rel "license")
- (href "http://creativecommons.org/licenses/by-sa/3.0/"))
+ (href "https://creativecommons.org/licenses/by-sa/3.0/"))
(img (@ (alt "Creative Commons License")
(style "border-width:0")
- (src "http://i.creativecommons.org/l/by-sa/3.0/80x15.png"))))
- (span (@ (xmlns:dct "http://purl.org/dc/terms/")
- (href "http://purl.org/dc/dcmitype/StillImage")
+ (src "https://i.creativecommons.org/l/by-sa/3.0/80x15.png"))))
+ (span (@ (xmlns:dct "https://purl.org/dc/terms/")
+ (href "https://purl.org/dc/dcmitype/StillImage")
(property "dct:title")
(rel "dct:type"))
,(post-ref post 'title))
" by "
- (a (@ (xmlns:cc "http://creativecommons.org/ns#")
- (href "http://elephly.net")
+ (a (@ (xmlns:cc "https://creativecommons.org/ns#")
+ (href "https://elephly.net")
(property "cc:attributionName")
(rel "cc:attributionURL"))
"Ricardo Wurmus")
" is licensed under a "
(a (@ (rel "license")
- (href "http://creativecommons.org/licenses/by-sa/3.0/"))
+ (href "https://creativecommons.org/licenses/by-sa/3.0/"))
"Creative Commons Attribution-ShareAlike 3.0 Unported License")))
'())))
@@ -258,7 +258,7 @@ in parentheses."
(define %make-slug post/file-base-name)
(site #:title "Rekado"
- #:domain "http://elephly.net"
+ #:domain "https://elephly.net"
#:default-metadata
'((author . "Ricardo Wurmus")
(email . "rekado+web@elephly.net"))