Adding upstream version 0.46.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
eb42e29864
commit
5ea73fcab5
125 changed files with 8421 additions and 71 deletions
10
docs/components/guide/slots/CompArchive.jinja
Normal file
10
docs/components/guide/slots/CompArchive.jinja
Normal 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 %}
|
14
docs/components/guide/slots/CompLayout.jinja
Normal file
14
docs/components/guide/slots/CompLayout.jinja
Normal 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 %}
|
7
docs/components/guide/slots/Modal.jinja
Normal file
7
docs/components/guide/slots/Modal.jinja
Normal file
|
@ -0,0 +1,7 @@
|
|||
{% filter markdown %}{% raw %}
|
||||
```html+jinja
|
||||
<dialog class="modal">
|
||||
{{ content }}
|
||||
</dialog>
|
||||
```
|
||||
{% endraw %}{% endfilter %}
|
7
docs/components/guide/slots/ModalBody.jinja
Normal file
7
docs/components/guide/slots/ModalBody.jinja
Normal file
|
@ -0,0 +1,7 @@
|
|||
{% filter markdown %}{% raw %}
|
||||
```html+jinja
|
||||
<div class="modal-body">
|
||||
{{ content }}
|
||||
</div>
|
||||
```
|
||||
{% endraw %}{% endfilter %}
|
7
docs/components/guide/slots/ModalFooter.jinja
Normal file
7
docs/components/guide/slots/ModalFooter.jinja
Normal file
|
@ -0,0 +1,7 @@
|
|||
{% filter markdown %}{% raw %}
|
||||
```html+jinja
|
||||
<footer class="modal-footer">
|
||||
{{ content }}
|
||||
</footer>
|
||||
```
|
||||
{% endraw %}{% endfilter %}
|
10
docs/components/guide/slots/ModalHeader.jinja
Normal file
10
docs/components/guide/slots/ModalHeader.jinja
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% filter markdown %}{% raw %}
|
||||
```html+jinja
|
||||
<header class="modal-header>
|
||||
<h2 class="modal-title">
|
||||
{{ content }}
|
||||
</h2>
|
||||
<CloseButton />
|
||||
</header>
|
||||
```
|
||||
{% endraw %}{% endfilter %}
|
Loading…
Add table
Add a link
Reference in a new issue