mirror of
https://git.davidovski.xyz/davidovski.git
synced 2024-08-15 00:43:29 +00:00
use rfc2822 dates
This commit is contained in:
parent
f4fe55dcdb
commit
a1df2a48f3
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ for file in $(ls -t entries/*.html); do
|
|||
<div class=\"small\">%s</div>
|
||||
</a>
|
||||
</li>
|
||||
" "${file%.*}.html" "$title" "$(git log --pretty=format:'%cd' --follow -- "$file" | tail -n 1)"
|
||||
" "${file%.*}.html" "$title" "$(git log --pretty=format:'%cD' --follow -- "$file" | tail -n 1)"
|
||||
done
|
||||
|
||||
cat << EOF
|
||||
|
|
|
@ -17,7 +17,7 @@ for entry in entries/*.html; do
|
|||
printf "<item>\n"
|
||||
printf "<title>%s</title>\n" "${title}"
|
||||
printf "<link>%s</link>\n" "http://davidovski.xyz/$entry"
|
||||
printf "<pubDate>%s</pubDate>\n" "$(git log --pretty=format:'%cd' --follow -- "$entry" | tail -n 1)"
|
||||
printf "<pubDate>%s</pubDate>\n" "$(git log --pretty=format:'%cD' --follow -- "$entry" | tail -n 1)"
|
||||
|
||||
|
||||
printf "<description><![CDATA["
|
||||
|
|
Loading…
Reference in a new issue