diff --git a/_config.yml b/_config.yml index f65730f..8611719 100644 --- a/_config.yml +++ b/_config.yml @@ -3,6 +3,11 @@ defaults: path: "assets/img" values: image: true +description: "Personal site" +future: false +paginate: 6 +paginate_path: 'page:num' +permalink: /:categories/:title/ theme: jekyll-theme-hacker -timezone: Ukraine/Kiev +timezone: Europe/Kiev title: undead404 diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..6cbe101 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,30 @@ +--- +layout: none +sitemap: + priority: 1.0 + changefreq: weekly +--- + + + {% for post in site.posts %} + + {{ site.url }}{{ post.url }} + {% if post.lastmod == null %} + {{ post.date | date: "%Y-%m-%d" }} + {% else %} + {{ post.lastmod | date: "%Y-%m-%d" }} + {% endif %} + weekly + 1.0 + + {% endfor %} + {% for page in site.pages %} + {% if page.sitemap != null and page.sitemap != empty %} + + {{ site.url }}{{ page.url }} + {{ page.sitemap.changefreq }} + {{ page.sitemap.priority }} + + {% endif %} + {% endfor %} + \ No newline at end of file