From 8285908df974a61dcd422c5fb6e1ef8b37dbfc78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pawela?= Date: Thu, 16 May 2024 14:32:08 +0200 Subject: [PATCH] cleanup --- about.markdown | 18 ------------------ feed.xml | 30 ------------------------------ index.markdown | 6 ------ sitemap.xml | 32 -------------------------------- 4 files changed, 86 deletions(-) delete mode 100644 about.markdown delete mode 100644 feed.xml delete mode 100644 index.markdown delete mode 100644 sitemap.xml diff --git a/about.markdown b/about.markdown deleted file mode 100644 index 8b4e0b2..0000000 --- a/about.markdown +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: page -title: About -permalink: /about/ ---- - -This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) - -You can find the source code for Minima at GitHub: -[jekyll][jekyll-organization] / -[minima](https://github.com/jekyll/minima) - -You can find the source code for Jekyll at GitHub: -[jekyll][jekyll-organization] / -[jekyll](https://github.com/jekyll/jekyll) - - -[jekyll-organization]: https://github.com/jekyll diff --git a/feed.xml b/feed.xml deleted file mode 100644 index 642b32e..0000000 --- a/feed.xml +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: null ---- - - - - {{ site.title | xml_escape }} - {{ site.description | xml_escape }} - {{ site.url }}{{ site.baseurl }}/ - - {{ site.time | date_to_rfc822 }} - {{ site.time | date_to_rfc822 }} - Jekyll v{{ jekyll.version }} - {% for post in site.posts limit:5 %} - - {{ post.title | xml_escape }} - {{ post.content | xml_escape }} - {{ post.date | date_to_rfc822 }} - {{ post.url | prepend: site.baseurl | prepend: site.url }} - {{ post.url | prepend: site.baseurl | prepend: site.url }} - {% for tag in post.tags %} - {{ tag | xml_escape }} - {% endfor %} - {% for cat in post.categories %} - {{ cat | xml_escape }} - {% endfor %} - - {% endfor %} - - diff --git a/index.markdown b/index.markdown deleted file mode 100644 index 0671507..0000000 --- a/index.markdown +++ /dev/null @@ -1,6 +0,0 @@ ---- -# Feel free to add content and custom Front Matter to this file. -# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults - -layout: home ---- diff --git a/sitemap.xml b/sitemap.xml deleted file mode 100644 index b3311ea..0000000 --- a/sitemap.xml +++ /dev/null @@ -1,32 +0,0 @@ ---- -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 %} - -