feat: Add current state from hippie main repo

- commit 86f3c679
- source/view/_includes/hippie
This commit is contained in:
sthag 2026-04-23 20:56:04 +02:00
parent 1fe8f9d243
commit 980b611a31
32 changed files with 619 additions and 0 deletions

19
partials/gate-list.liquid Normal file
View file

@ -0,0 +1,19 @@
<article class="portal__entry">
<section>
<h2>
<a class="a_discreet" href="{{ url }}">{{ name }}</a>
</h2>
<a class="portal__link portal__link--{{ name | slug }}" href="{{ url }}">
<img src="{{ image.src }}" alt="{{ image.alt }}"/>
</a>
{% if links %}
<ul class="portal__list">
{% for link in links %}
<li>
<a href="{{ link.href }}"><img src="{{ link.img }}" width="16" height="16" alt="icon"/>{{ link.name }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
</section>
</article>