Move all files to zet-old/
This commit is contained in:
parent
e1badc9fd5
commit
29d11fa9b9
60 changed files with 0 additions and 0 deletions
13
zet-old/source/_includes/zets/links.html.twig
Normal file
13
zet-old/source/_includes/zets/links.html.twig
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% if links is not empty %}
|
||||
<h2>Links</h2>
|
||||
|
||||
<ul>
|
||||
{% for link in links %}
|
||||
{% if link.text and link.url %}
|
||||
<li><a href="{{ link.url }}">{{ link.text }}</a></li>
|
||||
{% else %}
|
||||
<li><a href="{{ link }}">{{ link }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
13
zet-old/source/_includes/zets/related.html.twig
Normal file
13
zet-old/source/_includes/zets/related.html.twig
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% if related and zets %}
|
||||
<section>
|
||||
<h2>Related</h2>
|
||||
|
||||
<ul>
|
||||
{% for zet in zets if related|filter((title) => title == zet.title) %}
|
||||
<li>
|
||||
<a href="{{ zet.url|trim('/', 'right') }}">{{ zet.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
{% endif %}
|
10
zet-old/source/_includes/zets/tags.html.twig
Normal file
10
zet-old/source/_includes/zets/tags.html.twig
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% if tags is not empty %}
|
||||
<h2>Tags</h2>
|
||||
|
||||
<ul>
|
||||
{% for tag in tags|sort %}
|
||||
<li>{{ tag }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue