We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfdfe45 commit 7a3b67dCopy full SHA for 7a3b67d
src/_data/site.json
@@ -1,5 +1,5 @@
1
{
2
- "domain": "https://2024.djangocon.us/",
+ "domain": "https://2024.djangocon.us",
3
"timezone": "America/New_York",
4
"conf_year": 2024,
5
src/sitemap.html
@@ -0,0 +1,16 @@
+---
+permalink: /sitemap.xml
+eleventyExcludeFromCollections: true
+<?xml version="1.0" encoding="utf-8"?>
6
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
7
+ {% for page in collections.all %}
8
+ {% if page.url == false or page.url contains "/presenters/" %}
9
+ {% else %}
10
+ <url>
11
+ <loc>{{ site.domain }}{{ page.url }}</loc>
12
+ <lastmod>{{ page.date | date: "%Y-%m-%d" }}</lastmod>
13
+ </url>
14
+ {% endif %}
15
+ {% endfor %}
16
+</urlset>
0 commit comments