Skip to content

Commit 7fa22f5

Browse files
committed
250217 MON | add seo files
1 parent a3a3b62 commit 7fa22f5

9 files changed

+72
-12
lines changed

_posts/2024-07-24-[기초 알고리즘 #01] ADT는 뭐고 자료구조는 뭔데.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ categories:
55
tags:
66
- ADT
77
- 자료구조
8-
98
toc:
109
- 기초 알고리즘
11-
1210
sidebar:
1311
nav: "docs"
12+
13+
lastmode: 2025-02-17 13:00:00
1414
---
1515

1616
<br>

_posts/2024-07-24-[기초 알고리즘 #02][선형 자료구조] 스택-큐 -덱.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ tags:
77
- 스택
88
-
99
-
10-
1110
toc:
1211
- 기초 알고리즘
13-
1412
sidebar:
1513
nav: "docs"
14+
15+
lastmode: 2025-02-17 13:00:00
1616
---
1717

1818
<br>

_posts/2024-08-04-[기초 알고리즘 #03][선형 자료구조] 배열-리스트.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ tags:
77
- 배열
88
- 리스트
99
- Python
10-
1110
toc:
1211
- 기초 알고리즘
13-
1412
sidebar:
1513
nav: "docs"
14+
15+
lastmode: 2025-02-17 13:00:00
1616
---
1717

1818
<br>

_posts/2024-08-06-[기초 알고리즘 #04] 누적합.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ tags:
99
- Python
1010
- 누적합
1111
- 구간합
12-
1312
toc:
1413
- 기초 알고리즘
15-
1614
sidebar:
1715
nav: "docs"
16+
17+
lastmode: 2025-02-17 13:00:00
1818
---
1919

2020
<br>

_posts/2024-08-12-[기초 알고리즘 #05] 투포인터.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ tags:
88
- 리스트
99
- Python
1010
- 투포인터
11-
1211
toc:
1312
- 기초 알고리즘
14-
1513
sidebar:
1614
nav: "docs"
15+
16+
lastmode: 2025-02-17 13:00:00
1717
---
1818

1919
<br>

_posts/2024-08-20-[기초 알고리즘 #06] 슬라이딩윈도우.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ tags:
88
- 리스트
99
- Python
1010
- 슬라이딩윈도우
11-
1211
toc:
1312
- 기초 알고리즘
14-
1513
sidebar:
1614
nav: "docs"
15+
16+
lastmode: 2025-02-17 13:00:00
1717
---
1818

1919
<br>

feed.xml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: none
3+
---
4+
<?xml version="1.0" encoding="UTF-8"?>
5+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6+
<channel>
7+
<title>{{ site.name | xml_escape }}</title>
8+
<description>{{ site.description | xml_escape }}</description>
9+
<link>{{ site.url }}</link>
10+
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
11+
<lastBuildDate>{% for post in site.posts limit:1 %}{{ post.date | date_to_rfc822 }}{% endfor %}</lastBuildDate>
12+
{% for post in site.posts limit:10 %}
13+
<item>
14+
<title>{{ post.title | xml_escape }}</title>
15+
{% if post.author.name %}
16+
<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
17+
{% endif %}
18+
{% if post.excerpt %}
19+
<description>{{ post.excerpt | xml_escape }}</description>
20+
{% else %}
21+
<description>{{ post.content | xml_escape }}</description>
22+
{% endif %}
23+
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
24+
<link>{{ site.url }}{{ post.url }}</link>
25+
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
26+
</item>
27+
{% endfor %}
28+
</channel>
29+
</rss>

robots.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Allow: /
3+
Sitemap: https://coke05288.github.io/sitemap.xml

sitemap.xml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
---
3+
<?xml version="1.0" encoding="UTF-8"?>
4+
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
5+
{% for post in site.posts %}
6+
<url>
7+
<loc>{{ site.url }}{{ post.url }}</loc>
8+
{% if post.lastmod == null %}
9+
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
10+
{% else %}
11+
<lastmod>{{ post.lastmod | date_to_xmlschema }}</lastmod>
12+
{% endif %}
13+
14+
{% if post.sitemap.changefreq == null %}
15+
<changefreq>daily</changefreq>
16+
{% else %}
17+
<changefreq>{{ post.sitemap.changefreq }}</changefreq>
18+
{% endif %}
19+
20+
{% if post.sitemap.priority == null %}
21+
<priority>0.5</priority>
22+
{% else %}
23+
<priority>{{ post.sitemap.priority }}</priority>
24+
{% endif %}
25+
26+
</url>
27+
{% endfor %}
28+
</urlset>

0 commit comments

Comments
 (0)