From 585c08987fdd40274bd628bae15be9b9399b357e Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Wed, 6 Jan 2021 13:20:03 +0300 Subject: rename 'other' page to 'blog' because it's going to be a blog, really. --- _data/navigation.yml | 4 ++-- blog.md | 17 +++++++++++++++++ other.md | 17 ----------------- 3 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 blog.md delete mode 100644 other.md diff --git a/_data/navigation.yml b/_data/navigation.yml index cad0fd1..f02c7bc 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -4,7 +4,7 @@ link: /music/ - name: art link: /art/ -- name: other - link: /other/ +- name: blog + link: /blog/ - name: about link: /about/ diff --git a/blog.md b/blog.md new file mode 100644 index 0000000..90cac9c --- /dev/null +++ b/blog.md @@ -0,0 +1,17 @@ +--- +title: blog +permalink: /blog/ +--- + +# miscellaneous posts + +about different things + +filter by tag: {% for tag in site.tags %}[{{ tag[0] }}](/tags/{{ tag[0] }}) +{% endfor %} + +
+{% for post in site.posts %} + {% include post-preview.html %} +{% endfor %} +
diff --git a/other.md b/other.md deleted file mode 100644 index 51ac50f..0000000 --- a/other.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: other -permalink: /other/ ---- - -# miscellaneous posts - -about different things - -filter by tag: {% for tag in site.tags %}[{{ tag[0] }}](/tags/{{ tag[0] }}) -{% endfor %} - -
-{% for post in site.posts %} - {% include post-preview.html %} -{% endfor %} -
-- cgit v1.2.3