diff options
| author | Jakob L. Kreuze | 2024-06-16 15:01:34 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze | 2024-06-16 15:01:34 -0400 |
| commit | 825c7e43fa91ffcdd8e5a464e9491958266eb00b (patch) | |
| tree | 13371bdb2be7514594f79ccd0b25faaeacf8295f /haunt/pages/status-403.sxml | |
| parent | 0091197a26fee5ff82e136bbaeb0d8603402bedd (diff) | |
Use the built-in `sxml-reader' from Haunt
Diffstat (limited to 'haunt/pages/status-403.sxml')
| -rw-r--r-- | haunt/pages/status-403.sxml | 95 |
1 files changed, 47 insertions, 48 deletions
diff --git a/haunt/pages/status-403.sxml b/haunt/pages/status-403.sxml index 7823609..47db444 100644 --- a/haunt/pages/status-403.sxml +++ b/haunt/pages/status-403.sxml @@ -19,51 +19,50 @@ (use-modules (jakob theme) (jakob utils sxml)) -(theme - #:title "Forbidden" - #:content - `((p "Server responded with a status of 403: Forbidden.") - (hr) - (p "Yo, listen up, I got some news for you" - (br) - "About this 403 error message, it's all over the place" - (br) - "It means that your request has been denied" - (br) - "And you can't access the page anymore" - (br) - "It's like a red light, telling you to stop" - (br) - "But you keep on going, and that's not good" - (br) - "You're getting a 403, it's forbidden" - (br) - "No access allowed, it's plain and simple" - (br) - "Don't even try to argue with me" - (br) - "I'm the HTTP status code, and I know what I'm talking about" - (br) - "You can't just keep on hitting refresh" - (br) - "Thinking that you'll get a different result" - (br) - "It's time to face the facts, and accept your fate" - (br) - "403 means forbidden, it's not a joke" - (br) - "So why don't you take my advice" - (br) - "And find another route, or change your tactics" - (br) - "Don't keep on pushing, you'll end up in frustration" - (br) - "Just like the person who keeps on trying to get into the restricted area" - (br) - "But let me remind you, it's not a game" - (br) - "This 403 error message is not just some minor pain" - (br) - "It means that you're not supposed to be there" - (br) - "So why don't you just go away?"))) +`((title . "Forbidden") + (content + . ((p "Server responded with a status of 403: Forbidden.") + (hr) + (p "Yo, listen up, I got some news for you" + (br) + "About this 403 error message, it's all over the place" + (br) + "It means that your request has been denied" + (br) + "And you can't access the page anymore" + (br) + "It's like a red light, telling you to stop" + (br) + "But you keep on going, and that's not good" + (br) + "You're getting a 403, it's forbidden" + (br) + "No access allowed, it's plain and simple" + (br) + "Don't even try to argue with me" + (br) + "I'm the HTTP status code, and I know what I'm talking about" + (br) + "You can't just keep on hitting refresh" + (br) + "Thinking that you'll get a different result" + (br) + "It's time to face the facts, and accept your fate" + (br) + "403 means forbidden, it's not a joke" + (br) + "So why don't you take my advice" + (br) + "And find another route, or change your tactics" + (br) + "Don't keep on pushing, you'll end up in frustration" + (br) + "Just like the person who keeps on trying to get into the restricted area" + (br) + "But let me remind you, it's not a game" + (br) + "This 403 error message is not just some minor pain" + (br) + "It means that you're not supposed to be there" + (br) + "So why don't you just go away?")))) |