-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsitemap.xml
54 lines (54 loc) · 1.51 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<!-- homepage -->
<url>
<loc>{{ BASE_URL }}/</loc>
<lastmod>{{ today }}</lastmod>
<changefreq>hourly</changefreq>
<priority>1</priority>
</url>
<!-- carnet -->
<url>
<loc>{{ BASE_URL }}/carnet/</loc>
<lastmod>{{ recently }}</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<!-- photography -->
<url>
<loc>{{ BASE_URL }}/photography/</loc>
<lastmod>{{ recently }}</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<!-- code -->
<url>
<loc>{{ BASE_URL }}/code/</loc>
<lastmod>{{ recently }}</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<!-- talks -->
<url>
<loc>{{ BASE_URL }}/talks/</loc>
<lastmod>{{ recently }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<!-- contact -->
<url>
<loc>{{ BASE_URL }}/contact/</loc>
<lastmod>{{ recently }}</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
</url>
<!-- all pages -->
{%- for page in pages %}
<url>
<loc>{{ BASE_URL }}/{{ page.path }}/</loc>
<lastmod>{{ page.date }}</lastmod>
<changefreq>monthly</changefreq>
<priority>1</priority>
</url>
{%- endfor %}
</urlset>