From 995643cae1238ab3d3b21ae36ac666625d741afa Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 27 Dec 2023 00:42:28 +0100 Subject: Added atom feed for the content The entries are not yet ordered, placement in the index is... questionable, and the content of "published-on" and "last-modified-on" is duplicated in the subtitle line. --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..61bbbe5 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: content feed + +content: + rsync -t [^_]*.{html,png,css,map,jpg} ignore@ignore.pl:public/ignore.pl/ + +feed: + rm -f atom.xml + ./atom.xml.sh >atom.xml + rsync -t atom.xml ignore@ignore.pl:public/ignore.pl/ + +.PHONY: all content feed -- cgit v1.1