tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
28
pulls
pipelines
add rss alternate to head
awarm.space
6 months ago
351abf1a
b55d3ced
+7
1 changed file
expand all
collapse all
unified
split
app
lish
[did]
[publication]
page.tsx
+7
app/lish/[did]/[publication]/page.tsx
···
39
39
return {
40
40
title: record?.name || "Untitled Publication",
41
41
description: record?.description || "",
42
42
+
alternates: record?.base_path
43
43
+
? {
44
44
+
types: {
45
45
+
"application/rss+xml": `https://${record?.base_path}/rss`,
46
46
+
},
47
47
+
}
48
48
+
: undefined,
42
49
};
43
50
}
44
51