07814712d7
Added tag filtering functionality to the blog and news sections, allowing users to filter posts by categories. Enhanced layout with improved tag display, author details, and responsive styling. Integrated the latest news preview into the homepage template. Adjusted visibility logic for navigation arrows in event carousel and refined related PHP snippets for better clarity and reusability.
14 lines
274 B
PHP
14 lines
274 B
PHP
<?php snippet('layout', slots: true) ?>
|
|
|
|
<h1>Hallo Welt!</h1>
|
|
|
|
<?php snippet('home-news', [
|
|
'news' => page('news')
|
|
->children()
|
|
->limit(3)
|
|
->sortBy('date', 'desc')
|
|
]) ?>
|
|
|
|
<?php snippet('home-termine') ?>
|
|
|
|
<?php endsnippet() ?>
|