fixes, blog redirect, link scuti digilines

This commit is contained in:
Pascal Engélibert 2024-09-10 14:52:19 +02:00
parent 939798238a
commit d7f401d3f7
5 changed files with 24 additions and 2 deletions

View file

@ -0,0 +1,12 @@
+++
title = "Minetest: Digilines Ice & Drink Machine"
date = 2024-09-04
description = "scuti made crafting & vending machines in MineTest using Mesecons, Digilines and Lua."
insert_anchor_links = "left"
[taxonomies]
tags = ["minetest"]
[extra]
redirect = "https://scuti.neocities.org/pages/minetest-digilines-ice-and-drink-machine"
+++
[Read the article on scuti's microblog.](https://scuti.neocities.org/pages/minetest-digilines-ice-and-drink-machine)

View file

@ -101,6 +101,8 @@ fun, podcast, technologie, vidéo
"Fast, technical videos" sur la programmation (surtout en Rust). Aussi des podcasts de fiction et un peu de neurodiversité.
Je recommande le podcast [Lost Terminal](https://lostterminal.com/): point de vue d'une IA perdue dans un monde postapocalyptique où le radio-amateur est le principal moyen de communication, et qui apprend à vivre avec des humains et d'autres IAs.
## (en) [Oglaf](https://www.oglaf.com/)
BD, fun

View file

@ -101,6 +101,8 @@ fun, podcast, tech, video
"Fast, technical videos" about programming (lot of Rust). Also fiction podcasts and a bit of neurodiversity.
I recommend the podcast [Lost Terminal](https://lostterminal.com/) about an AI that tries to survive in a postapocalyptic world where amateur radio is the only long-range communication method, and who learns how to live with humans and other AIs.
## (en) [Oglaf](https://www.oglaf.com/)
comic strip, fun

View file

@ -5,7 +5,7 @@
{% block head %}
<meta property="og:title" content="{{page.title}}"/>
<meta property="og:type" content="article"/>
<meta property="og:title" content="{{page.permalink}}"/>
<meta property="og:url" content="{{page.permalink}}"/>
<meta property="og:locale" content="{{lang}}"/>
{% for t in page.translations %}
{% if t.lang|default(value=config.default_language) != lang %}
@ -14,6 +14,9 @@
{% endfor %}
<meta property="og:description" content="{{page.description}}"/>
<meta property="og:site_name" content="{{config.extra.sitename}}"/>
{% if page.extra.redirect %}
<meta http-equiv="refresh" content="0;URL='{{page.extra.redirect}}'"/>
{% endif %}
{% if page.extra.katex %}{{macros::katex()}}{% endif %}
{% endblock head %}

View file

@ -33,7 +33,10 @@
<section class="article-list">
{% for page in section.pages %}
<article>
<h2 class="article-list_title"><a href="{{page.permalink|safe}}">{{page.title|safe}}</a></h2>
<h2 class="article-list_title">
{% if page.extra.redirect %}🔗{% endif %}
<a href="{% if page.extra.redirect %}{{page.extra.redirect|safe}}{% else %}{{page.permalink|safe}}{% endif %}">{{page.title|safe}}</a>
</h2>
<small>{{page.date}}</small>
<p>{{page.description|safe}}</p>
</article>