👩💻 Join our community of thousands of amazing developers!
After my blog was already online for a while, I discovered Google Webmaster Tools and sitemaps while reading about the SEO basics. According to the link, a sitemap in its simplest form is just an XML file like this, with one <url><loc> element per URL on the site: <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.example.com/foo.html</loc> </url> </urlset> Using Jekyll and depending on the structure of the site, i...