Replace placeholders in content text with field values, e.g. {{start}}

Would have to look into that, but alternatively, you can also use Str::template() where needed:

<?= Str::template($page->beschreibung()->kt(), [
  'start' => $page->start()->toDate('d.m.Y'),
  'end'   => $page->end()->toDate('d.m.Y')
]); ?>
1 Like