alpha
Login
or
Join now
kacaii.dev
/
blog
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
💻 My corner on the internet
kacaii.dev/
lustre
evergarden
wisp-place
gleam
atproto
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
blog/page/home: extract variable
author
kacaii.dev
date
6 days ago
(Jul 21, 2026, 1:15 PM -0300)
commit
d4cc4e54
d4cc4e546245feb5350eb9407c5470418e4aa77b
parent
28668b7d
28668b7d85bcf56d903e6feb2721474f683bca52
change-id
lpuzvzsv
lpuzvzsvzmlxlqsqzzlvupkslvmyqnsw
1/2
deploy.yml
failed
1m 24s
test.yml
success
1m 9s
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
blog
page
home.gleam
+2
-2
src/blog/page/home.gleam
View file
Reviewed
···
96
96
atproto: atproto.AtProto,
97
97
) -> element.Element(Message) {
98
98
let rss_href = attr.href("https://blog.kacaii.dev/rss")
99
99
-
let bluesky_href =
100
100
-
attr.href("https://bsky.app/profile/" <> did.to_string(atproto.did))
99
99
+
let did = did.to_string(atproto.did)
100
100
+
let bluesky_href = attr.href("https://bsky.app/profile/" <> did)
101
101
102
102
let html = [
103
103
html.h1([], [html.text("home")]),