xiaowang/site/templates/home.twig

27 lines
1,021 B
Twig
Raw Permalink Normal View History

2022-04-08 16:37:47 +02:00
{% extends "base.twig" %}
{% block main %}
2022-09-09 15:19:54 +02:00
<main>
2022-04-15 16:45:38 +02:00
2022-09-09 15:19:54 +02:00
<section class="home-section" aria-hidden="true">
2022-04-08 16:37:47 +02:00
2022-09-09 15:19:54 +02:00
<div class="home">
<nav class="home__nav" aria-label="Menu">
{% set navItemNo = 1 %}
{% for gallery in pages.template('gallery') %}
<div class="home__nav-item-{{ navItemNo }}">
<a href="{{ gallery.url }}" target="_self" class="home__nav-link" tabindex="-1">{{ gallery.title }}</a>
</div>
{% set navItemNo = navItemNo + 1 %}
{% endfor %}
<div class="home__nav-image" aria-hidden="true">
<img src="{{ page.images.template("image").first.url }}" srcset="{{ page.images.template("image").first.srcset() }}" alt="{{ page.images.template("image").first.alt_text }}">
</div>
</nav>
</div>
2022-04-08 16:37:47 +02:00
2022-09-09 15:19:54 +02:00
</section>
2022-09-09 15:19:54 +02:00
</main>
2022-04-08 16:37:47 +02:00
{% endblock %}