2024-07-26 07:28:48 -07:00
< html >
< head >
2024-07-28 11:12:01 -07:00
< title > Natalie "thoughts"< / title >
2024-07-26 07:28:48 -07:00
< style >
$[cat style.css]
< / style >
2024-07-27 12:31:33 -07:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2024-07-26 07:28:48 -07:00
< / head >
< body >
2024-07-28 11:12:01 -07:00
$[include html/header.html]
2024-07-27 12:31:33 -07:00
< main >
< section >
< h1 > arbitrary thoughts generated by natalie< / h1 >
I am bad at thinking of things to make blog posts for. this webpage might contain things that I would put in a blog post if I was more proficient at writing filler. It might also contain other things.
< / section >
2024-07-28 11:12:01 -07:00
$[stat -c "%W %n" ./html/thoughts/* | sort -n --reverse | cut -d ' ' -f2- | while read -r file; do echo "< section > < details > < summary > $(stat -c'%w' $file | cut -d '.' -f1): $(grep '^<!-- TITLE:' $file | sed 's/^<! - - TITLE: //; s/ --> $//')< / summary > < div > $(include $file)< / details > < / section > "; done]
2024-07-27 12:31:33 -07:00
< / main >
2024-07-28 11:12:01 -07:00
$[include html/footer.html]
2024-07-26 07:28:48 -07:00
< / body >
< / html >