inits http ssg with mkws

This commit is contained in:
2026-05-12 20:56:32 +01:00
parent 512f130117
commit eb48cdb9a3
17 changed files with 1042 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
#!
for f in ${OUT}/*.html
do
#!
<url>
#!
loc=$1/$(basename "${f}")
#!
<loc>${loc}</loc>
#!
lastmod=$(lmt -f '%Y-%m-%dT%H:%M:%SZ' "${f}" | cut -d' ' -f1)
#!
<lastmod>${lastmod}</lastmod>
<priority>1.0</priority>
</url>
#!
done
#!
</urlset>