diff --git a/Dockerfile b/Dockerfile index 194aeed..e6d4b88 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,3 @@ FROM nginxinc/nginx-unprivileged COPY blog/public /usr/share/nginx/html +COPY nginx.conf /etc/nginx/conf.d/nginx_extra.conf diff --git a/blog/content/posts/treating-people-as-things.md b/blog/content/posts/treating-people-as-things.md new file mode 100644 index 0000000..e072841 --- /dev/null +++ b/blog/content/posts/treating-people-as-things.md @@ -0,0 +1,35 @@ +--- +title: "Treating People as Things" +date: 2022-08-03T17:18:48-07:00 +tags: + - snippets + +--- +Less a blog post, and more "_something I want to have a persistent addressable record of_". Terry Pratchett has _many_ pearls of wisdom that bear remembering[^1] - this particular exchange takes place between Mightily Oats (a naïve well-intentioned religious missionary) and Granny Weatherwax (the tough embittered rustic crone-witch who will help anyone who needs it, but recognizes that "'good' ain't the same as 'nice'"...) + +(Future similar "posts" that are merely short quotations from literature will be similarly tagged with `#snippets`) + + +{{< rawhtml >}}{{< blockquote >}}There is a very interesting debate raging at the moment about the nature of sin, for example,” said Oats. + +“And what do they think? Against it, are they?” said Granny Weatherwax. + +“It’s not as simple as that. It’s not a black and white issue. There are so many shades of gray.” + +“Nope.” + +“Pardon?” + +“There’s no grays, only white that’s got grubby. I’m surprised you don’t know that. And sin, young man, is when you treat people as things. Including yourself. That’s what sin is. + +“It’s a lot more complicated than that . . .” + +“No. It ain’t. When people say things are a lot more complicated than that, they means they’re getting worried that they won’t like the truth. People as things, that’s where it starts.” + +“Oh, I’m sure there are worse crimes . . .” + +“But they starts with thinking about people as things . . . ” +{{< /blockquote >}} +{{< /rawhtml >}} + +[^1]: Indeed, in the commit that introduced this blog post, I reintroduced a [tribute](https://xclacksoverhead.org/home/about) to the great man that's been present in all my personal projects... \ No newline at end of file diff --git a/blog/layouts/shortcodes/blockquote.html b/blog/layouts/shortcodes/blockquote.html new file mode 100644 index 0000000..5f62432 --- /dev/null +++ b/blog/layouts/shortcodes/blockquote.html @@ -0,0 +1,2 @@ + +
{{- replace .Inner "\n" "
" | safeHTML -}}
\ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..fa5c8ed --- /dev/null +++ b/nginx.conf @@ -0,0 +1 @@ +add_header X-Clacks-Overhead "GNU Terry Pratchett";