<?xml version="1.0" encoding="UTF-8"?>
<!--
  sitemap.xml for achomi.net

  A list of every page we want search engines to index. Crawlers normally
  discover pages by following links, which works badly for a single-page app
  like this one — there is no plain HTML trail leading to every project. This
  file hands them the list directly.

  Each <url> has:
    <loc>        the full address, including https://
    <lastmod>    when the page last changed, as YYYY-MM-DD
    <changefreq> a hint about how often it changes (a hint only; crawlers
                 decide for themselves)
    <priority>   how important this page is RELATIVE TO OUR OTHER PAGES, from
                 0.0 to 1.0. It does not affect ranking against other websites.

  MAINTENANCE: this is a static file, so it does not update itself. When you
  add a page, or add a project you want indexed, add it here and update the
  <lastmod> date. If the list ever gets long enough to be annoying, the better
  answer is to have Django generate it from the database.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <url>
    <loc>https://achomi.net/</loc>
    <lastmod>2026-08-25</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://achomi.net/services</loc>
    <lastmod>2026-08-25</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>

  <url>
    <loc>https://achomi.net/projects</loc>
    <lastmod>2026-08-25</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>

  <url>
    <loc>https://achomi.net/about</loc>
    <lastmod>2026-08-25</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://achomi.net/contact</loc>
    <lastmod>2026-08-25</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <!--
    Individual project pages. Add one block per project, using the same slug
    that appears in the URL when you open it on the site.
    Example:
      <url>
        <loc>https://achomi.net/projects/your-project-slug</loc>
        <lastmod>2026-08-25</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.6</priority>
      </url>
  -->

  <!-- Legal pages. Low priority, but they should still be indexed so people
       can find them, and so search engines can see the site is legitimate. -->
  <url>
    <loc>https://achomi.net/privacy</loc>
    <lastmod>2026-08-25</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>

  <url>
    <loc>https://achomi.net/terms</loc>
    <lastmod>2026-08-25</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>

</urlset>
