Reputation: 10863
I'm sure there should be some way to render another template from within a template so I don't have to copy paste similar looking blocks. I'm just not able to figure it out.
Upvotes: 3
Views: 939
Reputation: 25389
If you need to pass parameters your can do it this way:
{template .teasersblock}
<div>
{call .teaser}
{param url: 'https://example.com' /}
{param headline: 'My headline example' /}
{/call}
</div>
{/template}
Upvotes: 0