blog

git clone https://git.ce9e.org/blog.git

commit
a8abf236bb1c627eda9390a8b9d40f34c41e12eb
parent
dc4e461d334f9f38a33dd1614feaab6ea8ea2969
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2026-07-17 11:43
feed: use next instead of prev-archive

see https://www.rfc-editor.org/info/rfc5005/

archive feeds are not supposed to change (i.e. also not add any
entries).

Diffstat

M feed-atom.sh 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/feed-atom.sh b/feed-atom.sh

@@ -23,7 +23,7 @@ if [ "$1" = '-a' ]; then
   23    23 	select='tail -n +11'
   24    24 else
   25    25 	echo "	<link href=\"${base_url}feed.xml\" rel=\"self\" />"
   26    -1 	echo "	<link href=\"${base_url}feed-archive.xml\" rel=\"prev-archive\" />"
   -1    26 	echo "	<link href=\"${base_url}feed-archive.xml\" rel=\"next\" />"
   27    27 	select='head -n 10'
   28    28 fi
   29    29