[09/03/23] tags --> categories, added support for tags, changed category formatting

This commit is contained in:
Andrew Conlin 2023-03-09 22:57:58 +00:00
parent 8c53fbd8d5
commit a65511d465
16 changed files with 143 additions and 108 deletions

View File

@ -2,6 +2,6 @@
link: /index.html
- name: blog
link: /blog.html
- name: photos
- name: photos
link: http://andrewconlinphotography.co.uk

View File

@ -0,0 +1,17 @@
<style>
{% assign categories = page.categories %}
{% assign category = site.data.categories[categories.first] %}
code {
color: {{ category.backColor }};
}
pre {
color: {{ category.backColor }}
}
::selection {
background-color: {{ category.backColor }};
color: {{ category.textColor }}
}
</style>

View File

@ -1,9 +1,9 @@
{% assign tags = page.tags %}
{% assign primaryTag = site.data.tags[tags.first] %}
{% assign categories = page.categories %}
{% assign primaryCategory = site.data.categories[categories.first] %}
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;">
{% if tags %}
<span style="color:{{primaryTag.textColor}};background-color:{{primaryTag.backColor}};">ac</span>
{% if categories %}
<span style="color:{{primaryCategory.textColor}};background-color:{{primaryCategory.backColor}};">ac</span>
{% else %}
<span style="color:black;background-color:white;">ac</span>
{% endif %}

View File

@ -1,17 +0,0 @@
<style>
{% assign tags = page.tags %}
{% assign primaryTag = site.data.tags[tags.first] %}
code {
color: {{ primaryTag.backColor }};
}
pre {
color: {{ primaryTag.backColor }}
}
::selection {
background-color: {{ primaryTag.backColor }};
color: {{ primaryTag.textColor }}
}
</style>

View File

@ -11,7 +11,7 @@
<link href="https://use.fontawesome.com/releases/v5.0.2/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
{% include tagStyle.html%}
{% include categoryStyle.html%}
</head>
<body>
@ -26,10 +26,7 @@
<br>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>

View File

@ -2,13 +2,21 @@
layout: default
---
{% assign categories = page.categories %}
{% assign category = site.data.categories[categories.first] %}
{% assign tags = page.tags %}
<p style="font-family:Rubik Mono One;">
{{ page.date | date_to_string }} |
<p style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;{{ page.date | date_to_string }}&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:{{category.backColor}};color:{{category.textColor}};">&nbsp;<i class="fas fa-folder"></i>&nbsp;{{ categories.first }}&nbsp;</span>
&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<i class="fas fa-tag"></i>
{% for tag in tags %}
{% assign currentTag = site.data.tags[tag] %}
<span style="background-color:{{currentTag.backColor}};color:{{currentTag.textColor}};">{{ tag }}</span>
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">{{ tag }}</span>
{% if tag != tags.last %}
,
{% endif %}
{% endfor %}
</p>
<hr>

View File

@ -1,9 +1,12 @@
---
layout: post
title: Musings on the power of cinema
tags:
categories:
- thoughts
tags:
- journal
- cinema
- film
---
I've realised that going to the cinema makes me sad; a quiet, contemplative melancholy. Ennui. No matter the film, something about the cinema experience is meditative for me. I always look at things differently in the aftermath; like my perception is temporarily knocked off balance. No, more like a fog is lifted for a while. I especially enjoy that time immediately after, the cycle home. I notice so many little details, scenes of beauty and of strange nostalgia. Like I'm finally seeing the world how it is, or rather, I begin to see rather than look, listen rather than hear. I feel as though these moments, however brief, are when I am truly in touch with myself. My soul, my inner essence. This is why I love the cinema. These moments of private melancholy, of temporary clarity. It is a feeling I cannot replicate anywhere else in my life.

View File

@ -1,8 +1,13 @@
---
layout: post
title: Fixing php errors in a Nextcloud docker-compose configuration
tags:
categories:
- til
tags:
- php
- nextcloud
- docker
- docker-compose
---
I was trying to rescan the files in my Nextcloud server (running on Raspberry Pi 4 with DietPi), and kept running into some weird `php` errors.

View File

@ -1,8 +1,11 @@
---
layout: post
title: Yuri Felsen on love
tags:
categories:
- quotes
tags:
- yuri felsen
- love
---
_"Like everyone, I have my own, maybe obsessive futile, maybe in some way authentic, vision: all of a sudden, I will imagine the entire homogenous world as it is revealed to us-the streets, the cities, the rooms, those intelligent beasts of a sad and predatory nature, who have learn to stand on their hind legs, who have built all this but are fated to disappear, who, despite this, still try to cling to something solid and lasting, still try to ward off the inevitability of death, who dreamt up fairy tales and, now that these stories have been disproved, are disconsolate - and for me the only means of defending myself from our terrible fate is love, my love - Lyolya. Without love we fall into a stupor or despair, it covers our naked animal essence; with the fear of death, with deliberate attempts to grab hold of some kind of eternity, one that is at once a mystery to us and yet devised by us, even the remains of love, even its very echo in music, imbues us with a semblance of fearlessness, dignity and the spiritual range to disregard death. Only by loving, by knowing about love, hoping for love, are we inspired and meaningfully engaged in life, able to banish the sovereignty of petty day-to-day cares, to stop waiting for the end to come"_

View File

@ -58,7 +58,7 @@
<div class="col">
<h4>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
</h4>
</div>
@ -110,48 +110,39 @@
<ul style="list-style-type:none;margin:0;padding:0;">
<li>
<div style="font-family:Rubik Mono One;">
05 Mar 2023 |
<span style="background-color:fuchsia;color:black;">quotes</span>
<h4><a href="/quotes/2023/03/05/yuri-felsen-on-love.html">Yuri Felsen on love</a></h4>
<div style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;05 Mar 2023&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:fuchsia;color:black;">&nbsp;<i class="fas fa-folder"></i>&nbsp;quotes&nbsp;</span>
</div>
<h4><a href="/2023/03/05/yuri-felsen-on-love.html">Yuri Felsen on love</a></h4>
“Like everyone, I have my own, maybe obsessive futile, maybe in some way authentic, vision: all of a sudden, I will imagine the entire homogenous world as it is revealed...
<br>
<br>
</li>
<li>
<div style="font-family:Rubik Mono One;">
01 Mar 2023 |
<span style="background-color:gold;color:black;">til</span>
<h4><a href="/til/2023/03/01/nextcloud-php-errors.html">Fixing php errors in a Nextcloud docker-compose configuration</a></h4>
<div style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;01 Mar 2023&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:gold;color:black;">&nbsp;<i class="fas fa-folder"></i>&nbsp;til&nbsp;</span>
</div>
<h4><a href="/2023/03/01/nextcloud-php-errors.html">Fixing php errors in a Nextcloud docker-compose configuration</a></h4>
I was trying to rescan the files in my Nextcloud server (running on Raspberry Pi 4 with DietPi), and kept running into some weird php errors. First error - “could...
<br>
<br>
</li>
<li>
<div style="font-family:Rubik Mono One;">
14 Jan 2023 |
<span style="background-color:limegreen;color:black;">thoughts</span>
<span style="background-color:darkgreen;color:white;">journal</span>
<h4><a href="/thoughts/2023/01/14/musings-on-the-cinema.html">Musings on the power of cinema</a></h4>
<div style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;14 Jan 2023&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:limegreen;color:black;">&nbsp;<i class="fas fa-folder"></i>&nbsp;thoughts&nbsp;</span>
</div>
<h4><a href="/2023/01/14/musings-on-the-cinema.html">Musings on the power of cinema</a></h4>
Ive realised that going to the cinema makes me sad; a quiet, contemplative melancholy. Ennui. No matter the film, something about the cinema experience is meditative for me. I always...
<br>
<br>
@ -162,10 +153,7 @@
<br>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>

View File

@ -58,7 +58,7 @@
<div class="col">
<h4>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
</h4>
</div>
@ -125,10 +125,7 @@ You can <a href="mailto:andrew@andrewconl.in">email me</a>, or use any of the so
<br>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Yuri Felsen on love">
<meta property="og:image" content="https://andrewconl.in/assets/images/og-image-template.jpg">
<meta property="og:url" content="/2023/03/05/yuri-felsen-on-love.html">
<meta property="og:url" content="/quotes/2023/03/05/yuri-felsen-on-love.html">
<title>andrew conlin</title>
<link href="https://use.fontawesome.com/releases/v5.0.2/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
@ -58,7 +58,7 @@
<div class="col">
<h4>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
</h4>
</div>
@ -108,11 +108,22 @@
</h1>
<p style="font-family:Rubik Mono One;">
05 Mar 2023 |
<p style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;05 Mar 2023&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:fuchsia;color:black;">&nbsp;<i class="fas fa-folder"></i>&nbsp;quotes&nbsp;</span>
&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<i class="fas fa-tag"></i>
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">yuri felsen</span>
,
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">love</span>
<span style="background-color:fuchsia;color:black;">quotes</span>
</p>
<hr>
@ -128,10 +139,7 @@
<br>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Musings on the power of cinema">
<meta property="og:image" content="https://andrewconl.in/assets/images/og-image-template.jpg">
<meta property="og:url" content="/2023/01/14/musings-on-the-cinema.html">
<meta property="og:url" content="/thoughts/2023/01/14/musings-on-the-cinema.html">
<title>andrew conlin</title>
<link href="https://use.fontawesome.com/releases/v5.0.2/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
@ -58,7 +58,7 @@
<div class="col">
<h4>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
</h4>
</div>
@ -108,14 +108,27 @@
</h1>
<p style="font-family:Rubik Mono One;">
14 Jan 2023 |
<p style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;14 Jan 2023&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:limegreen;color:black;">&nbsp;<i class="fas fa-folder"></i>&nbsp;thoughts&nbsp;</span>
&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<i class="fas fa-tag"></i>
<span style="background-color:limegreen;color:black;">thoughts</span>
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">journal</span>
,
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">cinema</span>
,
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">film</span>
<span style="background-color:darkgreen;color:white;">journal</span>
</p>
<hr>
@ -127,10 +140,7 @@
<br>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Fixing php errors in a Nextcloud docker-compose configuration">
<meta property="og:image" content="https://andrewconl.in/assets/images/og-image-template.jpg">
<meta property="og:url" content="/2023/03/01/nextcloud-php-errors.html">
<meta property="og:url" content="/til/2023/03/01/nextcloud-php-errors.html">
<title>andrew conlin</title>
<link href="https://use.fontawesome.com/releases/v5.0.2/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
@ -58,7 +58,7 @@
<div class="col">
<h4>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
</h4>
</div>
@ -108,11 +108,32 @@
</h1>
<p style="font-family:Rubik Mono One;">
01 Mar 2023 |
<p style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;01 Mar 2023&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:gold;color:black;">&nbsp;<i class="fas fa-folder"></i>&nbsp;til&nbsp;</span>
&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<i class="fas fa-tag"></i>
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">php</span>
,
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">nextcloud</span>
,
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">docker</span>
,
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;">docker-compose</span>
<span style="background-color:gold;color:black;">til</span>
</p>
<hr>
@ -166,10 +187,7 @@ This led me to running this command:</p>
<br>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>

View File

@ -7,16 +7,14 @@ title: latest posts
<hr>
<ul style="list-style-type:none;margin:0;padding:0;">
{% for post in site.posts %}
{% assign tags = post.tags %}
{% assign categories = post.categories %}
{% assign category = site.data.categories[categories.first] %}
<li>
<div style="font-family:Rubik Mono One;">
{{ post.date | date_to_string }} |
{% for tag in tags %}
{% assign currentTag = site.data.tags[tag] %}
<span style="background-color:{{currentTag.backColor}};color:{{currentTag.textColor}};">{{ tag }}</span>
{% endfor %}
</div>
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<div style="font-family:Rubik;font-weight:500;">
<i class="fas fa-calendar"></i>&nbsp;{{ post.date | date_to_string }}&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
<span style="background-color:{{category.backColor}};color:{{category.textColor}};">&nbsp;<i class="fas fa-folder"></i>&nbsp;{{ categories.first }}&nbsp;</span>
</div>
{{ post.content | strip_html | truncatewords: 30 }}
<br>
<br>