(Grav GitSync) Automatic Commit from GitSync

This commit is contained in:
GitSync
2026-08-30 11:35:52 +00:00
parent bc4dcc11ab
commit 3e0940a1db
6 changed files with 41 additions and 2 deletions
@@ -1,6 +1,7 @@
--- ---
title: 'Work in detail' title: 'Work in detail'
menu: 'Work in detail' menu: 'Work in detail'
child_type: album
sitemap: sitemap:
lastmod: '18-08-2026 17:59' lastmod: '18-08-2026 17:59'
--- ---
@@ -1,6 +1,8 @@
--- ---
title: 'Werk in detail' title: 'Werk in detail'
child_type: default
sitemap: sitemap:
lastmod: '24-08-2026 19:25' lastmod: '24-08-2026 19:25'
--- ---
asdasd
+4
View File
@@ -0,0 +1,4 @@
title: Contact
'@extends':
type: default
context: blueprints://pages
@@ -0,0 +1,25 @@
title: 'Werk in detail'
'@extends':
type: default
context: blueprints://pages
form:
fields:
tabs:
fields:
content:
fields:
header.media_order:
unset@: true
advanced:
fields:
columns:
fields:
column1:
fields:
name:
disabled: true
overrides:
fields:
header.child_type:
default: album
+2 -2
View File
@@ -35,7 +35,7 @@
{% set section1_images = (page.header.section1_images ?? [])|map(item => page.media[item.image] ?? null)|filter(img => img is not null) %} {% 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) %} {% set section2_images = (page.header.section2_images ?? [])|map(item => page.media[item.image] ?? null)|filter(img => img is not null) %}
<div class="row align-items-center g-3"> <div class="row g-3">
<div class="col-12 col-md-6 p-3 order-1 order-md-2"> <div class="col-12 col-md-6 p-3 order-1 order-md-2">
{{ gallery.imagegrid(section1_images, 1) }} {{ gallery.imagegrid(section1_images, 1) }}
</div> </div>
@@ -47,7 +47,7 @@
</div> </div>
</div> </div>
<div class="row align-items-center g-3 mt-2"> <div class="row g-3 mt-2">
<div class="col-12 col-md-6 p-3 text-start content-text order-2"> <div class="col-12 col-md-6 p-3 text-start content-text order-2">
{% if page.header.section2_heading %}<h2 class="funky-font">{{ page.header.section2_heading }}</h2>{% endif %} {% if page.header.section2_heading %}<h2 class="funky-font">{{ page.header.section2_heading }}</h2>{% endif %}
{{ page.header.section2_text|markdown }} {{ page.header.section2_text|markdown }}
@@ -3,6 +3,13 @@
<div class="row mb-3"> <div class="row mb-3">
<h1 class="funky-font main-header text-center">{{ page.title }}</h1> <h1 class="funky-font main-header text-center">{{ page.title }}</h1>
</div> </div>
{% if content %}
<div class="row mb-3">
<div class="col-12 col-lg-8 offset-lg-2 text-center">
{{ content|raw }}
</div>
</div>
{% endif %}
<div class="row g-3"> <div class="row g-3">
{% for child in page.children %} {% for child in page.children %}
{% if child.published %} {% if child.published %}