-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsitemap.xml
More file actions
54 lines (54 loc) · 2.18 KB
/
Copy pathsitemap.xml
File metadata and controls
54 lines (54 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
# sitemap.xml — sitemap INDEX
#
# As of May 2026, the sitemap is split into six child sitemaps so Google
# Search Console can report indexing progress per content type, and so the
# crawler can prioritize human-authored canonical pages over the 7,800+
# auto-generated registry/bibliography/monograph/results-facet pages.
#
# Child sitemaps (mutually exclusive, classification by URL prefix in
# `_includes/sitemap-bucket.liquid`):
#
# /sitemap-core.xml ~1,047 human-authored L0-L4 pages
# /sitemap-registry.xml ~4,570 /registry/* registry objects
# /sitemap-bibliography.xml ~1,149 /bibliography/* references
# /sitemap-corpus-bulk.xml ~1,129 /corpus/monographs/* + /corpus/taulib/*
# /sitemap-results-bulk.xml ~925 /results/* facet + predictions/falsifications
# /sitemap-predictions.xml ~67 /predictions/* prediction pages
#
# Total URLs across children equal the single-file v1 count (~8,875).
#
# robots.txt references /sitemap.xml — unchanged. Google auto-discovers
# child sitemaps from the index. Last-modified for each child is the build
# time, which is correct: any change in source triggers a full rebuild.
layout: null
permalink: /sitemap.xml
sitemap: false
---
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>{{ "/sitemap-core.xml" | absolute_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</sitemap>
<sitemap>
<loc>{{ "/sitemap-registry.xml" | absolute_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</sitemap>
<sitemap>
<loc>{{ "/sitemap-bibliography.xml" | absolute_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</sitemap>
<sitemap>
<loc>{{ "/sitemap-corpus-bulk.xml" | absolute_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</sitemap>
<sitemap>
<loc>{{ "/sitemap-results-bulk.xml" | absolute_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</sitemap>
<sitemap>
<loc>{{ "/sitemap-predictions.xml" | absolute_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</sitemap>
</sitemapindex>