[notes] ...
All checks were successful
Deploy to S3 / deploy (push) Successful in 46s

This commit is contained in:
2026-04-09 02:12:21 +00:00
parent b9afbc231a
commit 1fcc199c1a
9 changed files with 150 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ title }} — un:prompted</title>
<title>{{ title | stripMarkdown }} — un:prompted</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/css/style.css">
</head>
@@ -21,7 +21,7 @@
</figure>
{% endif %}
<header class="column-header">
<h1>{{ title }}</h1>
<h1>{{ title | inlineMarkdown | safe }}</h1>
<time datetime="{{ date | isoDate }}">{{ date | readableDate }}</time>
</header>
<div class="column-body">

View File

@@ -12,7 +12,7 @@
<h3 class="year-label">{{ colYear }}</h3>
<ul>
{%- endif %}
<li><a href="{{ column.url }}">{{ column.data.title }}</a></li>
<li><a href="{{ column.url }}">{{ column.data.title | inlineMarkdown | safe }}</a></li>
{%- endfor %}
{%- if currentYear != null %}
</ul>