diff --git a/Gemfile b/Gemfile index aea06e6..0a677bf 100644 --- a/Gemfile +++ b/Gemfile @@ -5,3 +5,4 @@ source "https://rubygems.org" # gem "rails" gem "jekyll", "~> 4.3" +gem "jekyll-archives" diff --git a/Gemfile.lock b/Gemfile.lock index 60ce3ec..e564778 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -31,6 +31,8 @@ GEM safe_yaml (~> 1.0) terminal-table (>= 1.8, < 4.0) webrick (~> 1.7) + jekyll-archives (2.2.1) + jekyll (>= 3.6, < 5.0) jekyll-sass-converter (3.0.0) sass-embedded (~> 1.54) jekyll-watch (2.2.1) @@ -67,6 +69,7 @@ PLATFORMS DEPENDENCIES jekyll (~> 4.3) + jekyll-archives BUNDLED WITH 2.4.7 diff --git a/_config.yml b/_config.yml index e69de29..2ee7751 100644 --- a/_config.yml +++ b/_config.yml @@ -0,0 +1,28 @@ +plugins: + - jekyll-archives + +permalink: pretty + +defaults: + # blog + - scope: + path: "_posts/blog" + type: posts + values: + permalink: blog/:year/:month/:day/:title + layout: post + # til + - scope: + path: "_posts/til" + type: posts + values: + permalink: til/:title + category: til + layout: til-post + +jekyll-archives: + enabled: all + layout: default + permalinks: + category: "/blog/category/:name/" + tag: "/blog/tag/:name/" diff --git a/_data/nav.yml b/_data/nav.yml index af9ee76..d655146 100644 --- a/_data/nav.yml +++ b/_data/nav.yml @@ -1,7 +1,7 @@ - name: about - link: /index.html + link: / - name: blog - link: /blog.html + link: /blog - name: photos↗ link: http://andrewconlinphotography.co.uk diff --git a/_includes/categoryStyle.html b/_includes/category-style.html similarity index 100% rename from _includes/categoryStyle.html rename to _includes/category-style.html diff --git a/_layouts/default.html b/_layouts/default.html index d4177a1..03de281 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -11,7 +11,7 @@ - {% include categoryStyle.html%} + {% include category-style.html %}
diff --git a/_layouts/post.html b/_layouts/post.html index 78e667d..c02f0dc 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,11 +9,11 @@ layout: default{{ page.date | date_to_string }} | - {{ categories.first }} + {{ categories.first }} | {% for tag in tags %} - {{ tag }} + {{ tag }} {% if tag != tags.last %} , {% endif %} diff --git a/_layouts/til-post.html b/_layouts/til-post.html new file mode 100644 index 0000000..e56a7aa --- /dev/null +++ b/_layouts/til-post.html @@ -0,0 +1,24 @@ +--- +layout: default +--- + +{% assign categories = page.categories %} +{% assign category = site.data.categories[categories.first] %} + +{% assign tags = page.tags %} + +
+ {{ page.date | date_to_string }} | + {{ categories.first }} + | + + {% for tag in tags %} + {{ tag }} + {% if tag != tags.last %} + , + {% endif %} + {% endfor %} +
+14 Jan 2023 | - thoughts + thoughts | - journal + journal , - cinema + cinema , - film + film
diff --git a/_site/quotes/2023/03/05/yuri-felsen-on-love.html b/_site/blog/2023/03/05/yuri-felsen-on-love.html similarity index 89% rename from _site/quotes/2023/03/05/yuri-felsen-on-love.html rename to _site/blog/2023/03/05/yuri-felsen-on-love.html index 1d686bf..86aa18e 100644 --- a/_site/quotes/2023/03/05/yuri-felsen-on-love.html +++ b/_site/blog/2023/03/05/yuri-felsen-on-love.html @@ -6,7 +6,7 @@ - +05 Mar 2023 | - quotes + quotes | - yuri felsen + yuri felsen , - love + love
diff --git a/_site/thoughts/2023/03/10/putting-thoughts-into-action.html b/_site/blog/2023/03/10/putting-thoughts-into-action.html similarity index 88% rename from _site/thoughts/2023/03/10/putting-thoughts-into-action.html rename to _site/blog/2023/03/10/putting-thoughts-into-action.html index ad80cf6..6126c7b 100644 --- a/_site/thoughts/2023/03/10/putting-thoughts-into-action.html +++ b/_site/blog/2023/03/10/putting-thoughts-into-action.html @@ -6,7 +6,7 @@ - +10 Mar 2023 | - thoughts + thoughts | - html + html , - css + css , - bootstrap + bootstrap , - jekyll + jekyll , - webdev + webdev
diff --git a/_site/blog/category/quotes/index.html b/_site/blog/category/quotes/index.html new file mode 100644 index 0000000..e37091f --- /dev/null +++ b/_site/blog/category/quotes/index.html @@ -0,0 +1,117 @@ + + + + + + + + + +01 Mar 2023 | - til + til | - php + php , - nextcloud + nextcloud , - docker + docker , - docker-compose + docker-compose
diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 0000000..8a62e81 --- /dev/null +++ b/blog/index.html @@ -0,0 +1,24 @@ +--- +layout: default +title: latest posts +permalink: /blog +--- + + +