blog

git clone https://git.ce9e.org/blog.git

commit
23efb444f9940c78762fd958c57e3af1fc83e01e
parent
88c03504ad923851023e2d0b2908ce5fec3d9a4f
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-10-19 05:50
move blog to https://blog.ce9e.org

Diffstat

M Makefile 2 +-
M _content/posts/2018-03-25-pullquotes/index.md 2 +-
M _content/posts/2019-01-13-visual/index.md 2 +-
M _content/posts/2023-02-26-flow-relative-layout/index.md 2 +-
M _content/posts/2023-07-19-crime-storytelling/index.md 2 +-
M _templates/base.html 10 +++++-----
M _templates/blog.html 4 ++--
M _templates/feed.xml 8 ++++----
M _templates/player.html 2 +-
M _templates/vcard.html 2 +-

10 files changed, 18 insertions, 18 deletions


diff --git a/Makefile b/Makefile

@@ -7,7 +7,7 @@ MD_HTML := $(shell find _content -name '*.md' | sed 's/md$$/html/')
    7     7 all: build/index.html $(PAGES) $(PAGES_MD) build/feed.xml build/static/style.css $(IMG)
    8     8 
    9     9 push: all
   10    -1 	rsync -vrlc build/ spline-web:public_html/webroot/xi
   -1    10 	rsync -vrlc build/ ce9e:/var/www/blog
   11    11 
   12    12 build/%.md: _content/%.md _content/%.yml
   13    13 	@mkdir -p $$(dirname $@)

diff --git a/_content/posts/2018-03-25-pullquotes/index.md b/_content/posts/2018-03-25-pullquotes/index.md

@@ -50,6 +50,6 @@ elements are interesting. But they are also interrupting the flow of reading.
   50    50 I think it is best to keep this kind of content outside of your main text. If
   51    51 you absolutely have to scatter it, you should use the `<aside>` element and
   52    52 apply clear visual styling.  Still,
   53    -1 [personalization](http://tobib.spline.de/xi/posts/2017-12-18-personalization/)
   -1    53 [personalization](https://blog.ce9e.org/posts/2017-12-18-personalization/)
   54    54 will be an issue. A good alternative to pull quotes may be to simply highlight
   55    55 the section inside the main text.

diff --git a/_content/posts/2019-01-13-visual/index.md b/_content/posts/2019-01-13-visual/index.md

@@ -1,6 +1,6 @@
    1     1 One thing I often notice when working with web designers is that they focus
    2     2 mostly on visual aspects. I have discussed before that the web is [not a
    3    -1 visual medium](http://tobib.spline.de/xi/posts/2016-12-22-web-is-not-visual/).
   -1     3 visual medium](https://blog.ce9e.org/posts/2016-12-22-web-is-not-visual/).
    4     4 But in this article I want to go deeper into the topic of visuality itself.
    5     5 
    6     6 For some reason, we treat sight special. We say "I see" when we really mean "I

diff --git a/_content/posts/2023-02-26-flow-relative-layout/index.md b/_content/posts/2023-02-26-flow-relative-layout/index.md

@@ -63,7 +63,7 @@ If you do not need to support vertical writing modes, this will get your pretty
   63    63 far. The only thing you need to find a workaround for is `float`. Often you can
   64    64 replace it with flex or grid layout. For the few remaining cases I actually
   65    65 still use my [simple script from
   66    -1 2016](http://tobib.spline.de/xi/posts/2016-06-04-rtl-css/#the-workaround).
   -1    66 2016](https://blog.ce9e.org/posts/2016-06-04-rtl-css/#the-workaround).
   67    67 
   68    68 Vertical writing modes are not quite there yet. If you need to support them you
   69    69 will have to put in some extra effort. But it doesn't hurt to get into this

diff --git a/_content/posts/2023-07-19-crime-storytelling/index.md b/_content/posts/2023-07-19-crime-storytelling/index.md

@@ -57,7 +57,7 @@ Of course, your definition of what makes a story "good" can vary. Those are not
   57    57 necessarily stories that will make you change your view. No one will start a
   58    58 riot because of a Donna Leon novel. Since these stories need to keep their
   59    59 worlds static, they are also [inherently
   60    -1 conservative](http://tobib.spline.de/xi/posts/2020-07-30-conservative-stories/).
   -1    60 conservative](https://blog.ce9e.org/posts/2020-07-30-conservative-stories/).
   61    61 
   62    62 If you want to describe social change, you need to focus on the changing stuff.
   63    63 But sometimes you want to describe a positive vision instead, and then it is

diff --git a/_templates/base.html b/_templates/base.html

@@ -7,20 +7,20 @@
    7     7 	<meta name="referrer" content="strict-origin-when-cross-origin">
    8     8 	<meta http-equiv="Content-Security-Policy" content="default-src 'self'; media-src 'self' https://cf-media.sndcdn.com https://api.soundcloud.com">
    9     9 	<title>Ξ{{#title}} - {{.}}{{/title}}</title>
   10    -1 	<link rel="stylesheet" type="text/css" href="/xi/static/style.css" />
   11    -1 	<link rel="alternate" type="application/atom+xml" href="/xi/feed.xml" />
   -1    10 	<link rel="stylesheet" type="text/css" href="/static/style.css" />
   -1    11 	<link rel="alternate" type="application/atom+xml" href="/feed.xml" />
   12    12 </head>
   13    13 
   14    14 <body>
   15    15 
   16    16 	<header class="header">
   17    17 		<div class="header__title">
   18    -1 			<a href="/xi/" rel="home">Ξ</a>
   -1    18 			<a href="/" rel="home">Ξ</a>
   19    19 		</div>
   20    20 
   21    21 		<nav class="header__nav">
   22    22 			<ul>
   23    -1 				<li><a href="/xi/">blog</a></li>
   -1    23 				<li><a href="/">blog</a></li>
   24    24 				<li><a href="https://github.com/xi">github</a></li>
   25    25 			</ul>
   26    26 		</nav>
@@ -32,7 +32,7 @@
   32    32 			<div class="post__meta">
   33    33 				Published on {{.}}
   34    34 				{{#tags}}
   35    -1 					<a href="/xi/#{{.}}" class="tag">{{.}}</a>
   -1    35 					<a href="/#{{.}}" class="tag">{{.}}</a>
   36    36 				{{/tags}}
   37    37 			</div>
   38    38 		{{/date}}

diff --git a/_templates/blog.html b/_templates/blog.html

@@ -1,11 +1,11 @@
    1     1 <ul class="blog">
    2     2 	{{#posts}}
    3     3 		<li class="blog__post" data-tags="{{#tags}}{{.}} {{/tags}}">
    4    -1 			<a href="/xi{{url}}">
   -1     4 			<a href="{{url}}">
    5     5 				{{title}}
    6     6 			</a>
    7     7 		</li>
    8     8 	{{/posts}}
    9     9 </ul>
   10    10 
   11    -1 <script src="/xi/static/blogsearch.js"></script>
   -1    11 <script src="/static/blogsearch.js"></script>

diff --git a/_templates/feed.xml b/_templates/feed.xml

@@ -4,15 +4,15 @@
    4     4 		<name>Tobias Bengfort</name>
    5     5 	</author>
    6     6 	<title>Ξ</title>
    7    -1 	<id>http://tobib.spline.de/xi/</id>
    8    -1 	<link href="http://tobib.spline.de/xi/" rel="self" />
   -1     7 	<id>https://blog.ce9e.org/</id>
   -1     8 	<link href="https://blog.ce9e.org/" rel="self" />
    9     9 
   10    10 	{{#blog}}
   11    11 		{{#posts}}
   12    12 			<entry>
   13    13 				<title>{{title}}</title>
   14    -1 				<link href="http://tobib.spline.de/xi{{url}}"/>
   15    -1 				<id>http://tobib.spline.de/xi{{url}}</id>
   -1    14 				<link href="https://blog.ce9e.org{{url}}"/>
   -1    15 				<id>https://blog.ce9e.org{{url}}</id>
   16    16 				<updated>{{date}}T00:00:00Z</updated>
   17    17 				<content type="html">{{body}}</content>
   18    18 			</entry>

diff --git a/_templates/player.html b/_templates/player.html

@@ -5,4 +5,4 @@
    5     5 		{{/tracks}}
    6     6 	</ol>
    7     7 </div>
    8    -1 <script src="/xi/static/xiply.js"></script>
   -1     8 <script src="/static/xiply.js"></script>

diff --git a/_templates/vcard.html b/_templates/vcard.html

@@ -1,5 +1,5 @@
    1     1 <div vocab="http://xmlns.com/foaf/0.1/" typeof="person">
    2     2 	<a href="mailto:tobias.bengfort@posteo.de" property="email name">Tobias Bengfort</a>
    3    -1 	<a href="http://tobib.spline.de/xi/" property="homepage" hidden>Homepage</a>
   -1     3 	<a href="https://blog.ce9e.org/" property="homepage" hidden>Homepage</a>
    4     4 	<a href="https://github.com/xi" property="account" hidden>Github</a>
    5     5 </div>