-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsitemap.xml
More file actions
60 lines (60 loc) · 1.62 KB
/
sitemap.xml
File metadata and controls
60 lines (60 loc) · 1.62 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
55
56
57
58
59
60
---
---
<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
<url>
<loc>{{ site.url }}/</loc>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>{{ site.url }}/teaching/</loc>
<changefreq>yearly</changefreq>
</url>
<url>
<loc>{{ site.url }}/bio/</loc>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>{{ site.url }}/bio/academics.html</loc>
<changefreq>yearly</changefreq>
</url>
<url>
<loc>{{ site.url }}/bio/employment.html</loc>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>{{ site.url }}/apps/</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>{{ site.url }}/apps/quadratic.html</loc>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>{{ site.url }}/apps/email_extractor.html</loc>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>{{ site.url }}/apps/loan_calculator.html</loc>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>{{ site.url }}/games/set/</loc>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>{{ site.url }}/blog/</loc>
<changefreq>always</changefreq>
</url>
{% for post in site.posts %}
<url>
<loc>{{ site.url }}{{ post.url }}</loc>
<lastmod>{{post.last_modified_at}}</lastmod>
<changefreq>yearly</changefreq>
</url>
{% endfor %}
<url>
<loc>{{ site.url }}/assets/Theodore_Lindsey_Resume.pdf</loc>
<changefreq>weekly</changefreq>
</url>
</urlset>