website/scripts/gemini.awk

20 lines
468 B
Awk
Raw Normal View History

BEGIN {
2023-05-13 10:48:00 +00:00
getline firstLine
if (FILENAME != "-")
printf "Navigation:\n\
=> %s home\n\
=> %s notes\n\
=> %s useful\n\
2023-05-13 10:48:00 +00:00
=> %s sitemap\n\
=> %s feed\n\n", \
relpath(getDirname(FILENAME), "src/index.gmi"), \
relpath(getDirname(FILENAME), "src/notes/index.gmi"), \
relpath(getDirname(FILENAME), "src/useful/index.gmi"), \
relpath(getDirname(FILENAME), "src/sitemap.gmi"), \
relpath(getDirname(FILENAME), "src/feed.atom")
printf "%s\n", firstLine
}
2023-05-06 15:50:52 +00:00
{ print }