I have some code that outputs a header and list of links:
<div class="row" id="items">
<div class="large-12 columns panel">
<h1>[[#[[*id]].menutitle]]</h1>
[[Wayfinder? &startId=`[[*id]]` &ignoreHidden=`1` &level=`2` &outerClass=`small-block-grid-4` &levelClass=`level`]]
</div>
</div>
As you can see demonstrated here:
http://c0521.paas2.ams.modxcloud.com/vrije-tijd/ .
I would like to be able to have another template that outputs a
title +
description.
Something like this:
<div class="row" id="items">
<div class="large-12 columns panel">
<h1>Opening hours</h1>
<p><a href="/hours">Find out our opening hours</a></p>
</div>
</div>
Or like this ('ul' instead of 'p'):
<div class="row" id="items">
<div class="large-12 columns panel">
<h1>Opening hours</h1>
<ul>
<li><a href="/hours">Find out our opening hours</a></li>
</ul>
</div>
</div>
I have a suspicion the answer to my question is pretty easy.
But I played around with this for a while now and can't seem to get it to work.