From f353e6616a651e9d5e4eaa908f9e684e7c686f2f Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Wed, 3 May 2023 21:27:26 +0100 Subject: [PATCH] [03/05/23] updated category and tag archives and added an atom feed --- _config.yml | 8 +- _data/icons.yml | 2 + _data/nav.yml | 2 + _layouts/category.html | 10 +- _layouts/default.html | 4 + _layouts/tag.html | 49 ++++++ ...-04-19-running-python-in-cron-in-docker.md | 2 +- .../01/14/musings-on-the-cinema/index.html | 14 ++ .../2023/03/05/yuri-felsen-on-love/index.html | 14 ++ .../putting-thoughts-into-action/index.html | 14 ++ .../04/29/links-arent-performances/index.html | 14 ++ _site/blog/category/links/index.html | 14 +- _site/blog/category/quotes/index.html | 14 +- _site/blog/category/thoughts/index.html | 14 +- _site/blog/category/til/index.html | 14 +- _site/blog/index.html | 16 +- _site/blog/tag/bootstrap/index.html | 142 ++++++++++++++++ _site/blog/tag/cinema/index.html | 142 ++++++++++++++++ _site/blog/tag/copyright/index.html | 142 ++++++++++++++++ _site/blog/tag/cron/index.html | 142 ++++++++++++++++ _site/blog/tag/css/index.html | 142 ++++++++++++++++ _site/blog/tag/docker-compose/index.html | 156 ++++++++++++++++++ _site/blog/tag/docker/index.html | 156 ++++++++++++++++++ _site/blog/tag/film/index.html | 142 ++++++++++++++++ _site/blog/tag/html/index.html | 142 ++++++++++++++++ _site/blog/tag/jekyll/index.html | 142 ++++++++++++++++ _site/blog/tag/journal/index.html | 142 ++++++++++++++++ _site/blog/tag/kindle/index.html | 142 ++++++++++++++++ _site/blog/tag/law/index.html | 142 ++++++++++++++++ _site/blog/tag/love/index.html | 142 ++++++++++++++++ _site/blog/tag/nextcloud/index.html | 142 ++++++++++++++++ _site/blog/tag/php/index.html | 142 ++++++++++++++++ _site/blog/tag/pluralistic/index.html | 142 ++++++++++++++++ _site/blog/tag/python/index.html | 142 ++++++++++++++++ _site/blog/tag/webdev/index.html | 142 ++++++++++++++++ _site/blog/tag/yuri-felsen/index.html | 142 ++++++++++++++++ _site/feed.xml | 14 +- _site/feed/til.xml | 139 ++++++++++++++++ _site/index.html | 16 +- _site/til/index.html | 16 +- _site/til/nextcloud-php-errors/index.html | 14 ++ .../index.html | 16 +- blog.html | 3 +- index.html | 2 +- til.html | 3 +- 45 files changed, 3272 insertions(+), 24 deletions(-) create mode 100644 _layouts/tag.html create mode 100644 _site/feed/til.xml diff --git a/_config.yml b/_config.yml index 2bdcd61..bf1a83d 100644 --- a/_config.yml +++ b/_config.yml @@ -7,8 +7,10 @@ plugins: - jekyll-feed permalink: pretty -baseurl: "/andrewconl.in" +baseurl: "/" url: "https://andrwcnln.github.io" + +author: Andrew Conlin defaults: # blog @@ -37,3 +39,7 @@ jekyll-archives: permalinks: category: "/blog/category/:name/" tag: "/blog/tag/:name/" + +feed: + categories: + - til \ No newline at end of file diff --git a/_data/icons.yml b/_data/icons.yml index 91b31cc..8b902cd 100644 --- a/_data/icons.yml +++ b/_data/icons.yml @@ -12,3 +12,5 @@ icon: letterboxd - link: mailto:andrew@andrewconl.in icon: fas fa-envelope +- link: /feed.xml + icon: fas fa-square-rss diff --git a/_data/nav.yml b/_data/nav.yml index d655146..84db8f9 100644 --- a/_data/nav.yml +++ b/_data/nav.yml @@ -2,6 +2,8 @@ link: / - name: blog link: /blog +- name: til + link: /til - name: photos↗ link: http://andrewconlinphotography.co.uk diff --git a/_layouts/category.html b/_layouts/category.html index 1a8e7e5..b685bff 100644 --- a/_layouts/category.html +++ b/_layouts/category.html @@ -16,16 +16,18 @@
- {% include nav.html a=page.title b=categories %} + {% include nav.html a=page.title %}
+ {% assign categories = page.title %} + {% assign category = site.data.categories[categories] %}

- {{ page.title }} +   {{ page.title }} 


    {% for post in page.posts %} - {% assign categories = page.title %} - {% assign category = site.data.categories[categories] %} + {% assign categories = post.categories %} + {% assign category = site.data.categories[categories.first] %}
  • {{ post.title }}

    diff --git a/_layouts/default.html b/_layouts/default.html index 9d61c4a..ac36d3f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -5,6 +5,7 @@ + {% feed_meta %} andrew conlin @@ -19,6 +20,9 @@

    {{ page.title }}

    +

    + {{ page.subtitle }} +

    {{ content }}

    diff --git a/_layouts/tag.html b/_layouts/tag.html new file mode 100644 index 0000000..2b8a26f --- /dev/null +++ b/_layouts/tag.html @@ -0,0 +1,49 @@ + + + + + + + + + + andrew conlin + + + + {% include style.html a=page.title %} + + + +
    + {% include nav.html a=page.title %} +
    +

    +  {{ page.title }} +

    +
    +
      + {% for post in page.posts %} + {% assign categories = post.categories %} + {% assign category = site.data.categories[categories.first] %} +
    • +

      {{ post.title }}

      +
      +  {{ post.date | date_to_string }}   |    +   {{ categories }}  +
      + {{ post.content | strip_html | truncatewords: 30 }} +
      +
      +
    • + {% endfor %} +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_posts/til/2023-04-19-running-python-in-cron-in-docker.md b/_posts/til/2023-04-19-running-python-in-cron-in-docker.md index a0beeee..5e0c2a7 100644 --- a/_posts/til/2023-04-19-running-python-in-cron-in-docker.md +++ b/_posts/til/2023-04-19-running-python-in-cron-in-docker.md @@ -49,7 +49,7 @@ You can then add this to the top of your Python script, as follows: ``` #!/usr/bin/local/python3 ``` -## 3. Still missing dependecencies +## 3. Still missing dependencies Some modules will still run into errors even when the PYTHONPATH variable has been set. In particular, I ran into problems with `reportlab` and `Pillow/PIL`: ``` ImportError: cannot import name '_imaging' from 'PIL' diff --git a/_site/blog/2023/01/14/musings-on-the-cinema/index.html b/_site/blog/2023/01/14/musings-on-the-cinema/index.html index 898ca7f..1110f48 100644 --- a/_site/blog/2023/01/14/musings-on-the-cinema/index.html +++ b/_site/blog/2023/01/14/musings-on-the-cinema/index.html @@ -5,6 +5,7 @@ + andrew conlin @@ -52,6 +53,12 @@
    +
    +

    + til +

    +
    +

    photos↗ @@ -91,6 +98,10 @@ + + + +

    @@ -102,6 +113,9 @@

    Musings on the power of cinema

    +

    + +

    diff --git a/_site/blog/2023/03/05/yuri-felsen-on-love/index.html b/_site/blog/2023/03/05/yuri-felsen-on-love/index.html index e2d9b18..3b75659 100644 --- a/_site/blog/2023/03/05/yuri-felsen-on-love/index.html +++ b/_site/blog/2023/03/05/yuri-felsen-on-love/index.html @@ -5,6 +5,7 @@ + andrew conlin @@ -52,6 +53,12 @@
+
+

+ til +

+
+

photos↗ @@ -91,6 +98,10 @@ + + + +

@@ -102,6 +113,9 @@

Yuri Felsen on love

+

+ +

diff --git a/_site/blog/2023/03/10/putting-thoughts-into-action/index.html b/_site/blog/2023/03/10/putting-thoughts-into-action/index.html index 3b85ab9..d16cc32 100644 --- a/_site/blog/2023/03/10/putting-thoughts-into-action/index.html +++ b/_site/blog/2023/03/10/putting-thoughts-into-action/index.html @@ -5,6 +5,7 @@ + andrew conlin @@ -52,6 +53,12 @@
+
+

+ til +

+
+

photos↗ @@ -91,6 +98,10 @@ + + + +

@@ -102,6 +113,9 @@

A measure of how easily thoughts can be translated to action

+

+ +

diff --git a/_site/blog/2023/04/29/links-arent-performances/index.html b/_site/blog/2023/04/29/links-arent-performances/index.html index 053b80f..7ecfd0b 100644 --- a/_site/blog/2023/04/29/links-arent-performances/index.html +++ b/_site/blog/2023/04/29/links-arent-performances/index.html @@ -5,6 +5,7 @@ + andrew conlin @@ -52,6 +53,12 @@ +
+

+ til +

+
+

photos↗ @@ -91,6 +98,10 @@ + + + +

@@ -102,6 +113,9 @@

Links aren't performances

+

+ +

diff --git a/_site/blog/category/links/index.html b/_site/blog/category/links/index.html index cdf467f..e5fb5a7 100644 --- a/_site/blog/category/links/index.html +++ b/_site/blog/category/links/index.html @@ -54,6 +54,12 @@ +
+

+ til +

+
+

photos↗ @@ -93,6 +99,10 @@ + + + +

@@ -101,8 +111,10 @@
+ +

- links +   links 


+
+

+ til +

+
+

photos↗ @@ -93,6 +99,10 @@ + + + +

@@ -101,8 +111,10 @@
+ +

- quotes +   quotes 


+
+

+ til +

+
+

photos↗ @@ -93,6 +99,10 @@ + + + +

@@ -101,8 +111,10 @@
+ +

- thoughts +   thoughts 


+
+

+ til +

+
+

photos↗ @@ -93,6 +99,10 @@ + + + +

@@ -101,8 +111,10 @@
+ +

- til +   til 


+
+

+ til +

+
+

photos↗ @@ -91,6 +98,10 @@ + + + +

@@ -100,8 +111,11 @@

- latest posts + latest posts

+

+ all the posts, in reverse chronological. there is an atom feed above. +