Rewrite gallery page copy and drop redundant CTA buttons
Move commissions/full-catalog reference into the Bezoeken & aankoop section where it fits the purchase decision, tighten the intro paragraph, and remove the opening hours duplicated from the Contact page (which was out of sync: 13:00 vs 14:00). Buttons removed in favor of inline links now that all three destinations are linked in the text. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01XeFfgLSYdiS9UXcjiNzME3
This commit is contained in:
co-authored by
Claude Sonnet 5
parent
c00bdaee7c
commit
6c5ea608c5
@@ -31,7 +31,6 @@
|
||||
{% import _self as gallery %}
|
||||
|
||||
{% block content %}
|
||||
{% set is_en = (grav.language.active ?? 'nl') == 'en' %}
|
||||
{% set section1_images = (page.header.section1_images ?? [])|map(item => page.media[item.image] ?? null)|filter(img => img is not null) %}
|
||||
{% set section2_images = (page.header.section2_images ?? [])|map(item => page.media[item.image] ?? null)|filter(img => img is not null) %}
|
||||
|
||||
@@ -48,13 +47,9 @@
|
||||
<div class="row g-3 mt-2">
|
||||
<div class="col-12 col-md-6 p-3 text-start content-text order-2">
|
||||
{% if page.header.section2_title %}
|
||||
<h2 class="section-subtitle">{{ page.header.section2_title }}</h2>
|
||||
<h2 class="section-subtitle text-center">{{ page.header.section2_title }}</h2>
|
||||
{% endif %}
|
||||
{{ page.header.section2_text|markdown }}
|
||||
<div class="d-flex flex-column flex-sm-row gap-2 mt-3">
|
||||
<a href="{{ url('/werk-in-detail') }}" class="btn btn-brand">{{ is_en ? 'View work in detail' : 'Bekijk werk in detail' }}</a>
|
||||
<a href="{{ url('/contact') }}" class="btn btn-outline-brand">{{ is_en ? 'Plan a visit' : 'Plan een bezoek' }}</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 col-md-6 p-3 order-1">
|
||||
{{ gallery.imagegrid(section2_images, 5, 2) }}
|
||||
|
||||
Reference in New Issue
Block a user