We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50fa71f commit b91a2e3Copy full SHA for b91a2e3
1 file changed
src/wiiiikiiii.nim
@@ -8,12 +8,12 @@ import std/tables
8
import std/algorithm
9
10
const pageName = "pogging.fish"
11
-const donation = ""
+const donation = "<p><a href='https://bsky.app/profile/pogging.fish'>Follow me on Bluesky</a></p>"
12
const tmpl = readFile("wiki/templates/base.html")
13
let meta = parseFile("wiki/meta.json")
14
15
proc applyTemplate(page: string, tags: string = "", date: string = "(meta pages have no date)"): string =
16
- return multireplace(tmpl,
+ return multireplace(tmpl,
17
[("__varHtmlpage__var", page),
18
("__varTags__var", tags),
19
("__varCreationdate__var", date),
0 commit comments