1
0
Fork 0

Merging upstream version 0.46.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 18:42:39 +01:00
parent d5bf7afd18
commit 76fe8c2886
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
125 changed files with 8421 additions and 71 deletions

View file

@ -0,0 +1,10 @@
{% filter markdown %}{% raw %}
```html+jinja
{#def posts #}
<Layout title="Archive">
{% for post in posts %}
<Post post={post} />
{% endfor %}
</Layout>
```
{% endraw %}{% endfilter %}

View file

@ -0,0 +1,14 @@
{% filter markdown %}{% raw %}
```html+jinja
{#def title #}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ title }}</title>
</head>
<body>
{{ content }}
</body>
```
{% endraw %}{% endfilter %}

View file

@ -0,0 +1,7 @@
{% filter markdown %}{% raw %}
```html+jinja
<dialog class="modal">
{{ content }}
</dialog>
```
{% endraw %}{% endfilter %}

View file

@ -0,0 +1,7 @@
{% filter markdown %}{% raw %}
```html+jinja
<div class="modal-body">
{{ content }}
</div>
```
{% endraw %}{% endfilter %}

View file

@ -0,0 +1,7 @@
{% filter markdown %}{% raw %}
```html+jinja
<footer class="modal-footer">
{{ content }}
</footer>
```
{% endraw %}{% endfilter %}

View file

@ -0,0 +1,10 @@
{% filter markdown %}{% raw %}
```html+jinja
<header class="modal-header>
<h2 class="modal-title">
{{ content }}
</h2>
<CloseButton />
</header>
```
{% endraw %}{% endfilter %}