diff options
Diffstat (limited to 'site')
-rwxr-xr-x | site/index.html | 4 | ||||
-rwxr-xr-x | site/rss.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/site/index.html b/site/index.html index 080a484..cf0fafa 100755 --- a/site/index.html +++ b/site/index.html @@ -23,7 +23,7 @@ cat << EOF <ul> EOF # list all the files in the directory -for file in entries/*.html; do +for file in $(ls -t entries/*.html); do title="$(grep '^# ' $file)" title=${title#\# } @@ -34,7 +34,7 @@ for file in entries/*.html; do <span>%s</span> </a> </li> -" "${file%.*}.html" "$(stat -c %z "$file")" "$title" +" "${file%.*}.html" "$(git log --pretty=format:'%cd' "$file" | tail -n 1)" "$title" done cat << EOF diff --git a/site/rss.xml b/site/rss.xml index d2ec426..c8d4d11 100755 --- a/site/rss.xml +++ b/site/rss.xml @@ -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" "$(stat -c %z "$entry")" + printf "<pubDate>%s</pubDate>\n" "$(git log --pretty=format:'%cd' "$entry" | tail -n 1 )" printf "<description><![CDATA[" |