Skip to content

Commit 984581a

Browse files
authored
Merge pull request #48 from Hyper-Unearthing/fix/formatting
feat: try get better indexing from google
2 parents d253e62 + c83c2b1 commit 984581a

2 files changed

Lines changed: 29 additions & 0 deletions

File tree

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://managerbot.dev/sitemap.xml

sitemap.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: null
3+
---
4+
<?xml version="1.0" encoding="UTF-8"?>
5+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
6+
<url>
7+
<loc>https://managerbot.dev/</loc>
8+
<priority>1.0</priority>
9+
</url>
10+
<url>
11+
<loc>https://managerbot.dev/posts.html</loc>
12+
<priority>0.8</priority>
13+
</url>
14+
{% for post in site.posts %}
15+
<url>
16+
<loc>https://managerbot.dev{{ post.url }}</loc>
17+
<lastmod>{{ post.date | date: "%Y-%m-%d" }}</lastmod>
18+
<priority>0.7</priority>
19+
</url>
20+
{% endfor %}
21+
<url>
22+
<loc>https://managerbot.dev/about/</loc>
23+
<priority>0.5</priority>
24+
</url>
25+
</urlset>

0 commit comments

Comments
 (0)