Sitemaps for (Small) Static Sites
You may know that I run a small CV site and since I'd like our precious observers to regularly scan my toy sites, I tend to provide a sitemap for them. I've implemented the updates of those sitemaps with a git commit hook I'd like to share with you here.
Published by Philipp Trommler. This article has also been translated to: de.
First of all, I've created a standard sitemap within the root of the repository that feeds my CV website. It goes like the following and should contain no surprises if you're used to them:
1 2 3 4 5 6 7 8 9 |
|
Updating this file whenever I change something on my site seems like a
cumbersome and error prone task, thus I've written a really small shell script
that I use as a pre-commit hook by moving it to .git/hooks/pre-commit
:
1 2 3 4 |
|
This script simply exchanges everything inside of <lastmod></lastmod>
with the
output of date --rfc-3339=date
which is the current date in the format
expected by the search engines and adds the resulting changes to the index.
Therefore, the commit I'm currently editing automatically contains the current
date within the sitemap.
Of course this solution doesn't scale well onto bigger sites, there you'd probably go better with a full fledged static site generator. But maybe you also have some kind of one-pager, portfolio site or online CV, that you want to upgrade with an automatic sitemap.
This was a rather short blog entry, but since I haven't written anything in quite some time I thought I share it with you nonetheless. If you have any improvements or found an error, please let me know!
Filed under Tiny Bits. Tags: web, git.
Want to comment on this article? Write me at blog [at] philipp-trommler [dot] me!