My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: automatically set publication and lastmod date

+13
+2
.gitattributes
··· 2 2 *.woff filter=lfs diff=lfs merge=lfs -text 3 3 *.jpg filter=lfs diff=lfs merge=lfs -text 4 4 *.jpeg filter=lfs diff=lfs merge=lfs -text 5 + 6 + content/post/*.md filter=dates
+4
Makefile
··· 9 9 assets: 10 10 yarn install 11 11 yarn build 12 + 13 + init: 14 + git config filter.dates.clean ./bin/dates.sh 15 + git config filter.dates.smudge ./bin/dates.sh
+7
bin/dates.sh
··· 1 + #!/bin/sh 2 + 3 + today=$(date -Iseconds) 4 + 5 + sed \ 6 + -e "s/^draft: false/date: $today/" \ 7 + -e "s/^lastmod:.*/lastmod: $today/"