Skip to content

Commit e378bb4

Browse files
committed
docs: add SEO infrastructure — robots.txt, sitemap, .nojekyll
- robots.txt: Allow all, point to sitemap - sitemap.xml: 1 URL (landing page), weekly, priority 1.0 - .nojekyll: required for GitHub Pages to serve raw .md files - index.html: link robots + sitemap in head
1 parent 40af2e2 commit e378bb4

4 files changed

Lines changed: 15 additions & 0 deletions

File tree

docs/.nojekyll

Whitespace-only changes.

docs/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<title>odek · ~12 MB, zero-framework Go agent runtime</title>
77
<meta name="description" content="odek — the fastest, minimal Go autonomous agent runtime. One binary. One loop. Zero frameworks.">
88
<link rel="canonical" href="https://odek.21no.de/">
9+
<link rel="robots" href="/robots.txt">
10+
<link rel="sitemap" href="/sitemap.xml">
911
<meta property="og:type" content="website">
1012
<meta property="og:url" content="https://odek.21no.de/">
1113
<meta property="og:title" content="odek — Go Autonomous Agent Runtime">

docs/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://odek.21no.de/sitemap.xml

docs/sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://odek.21no.de/</loc>
5+
<lastmod>2026-05-25</lastmod>
6+
<changefreq>weekly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)