Hello,
I am currently creating a theme for the Zendesk Help Center, based on the Copenhagen Theme by Zendesk.
I tried to retrieve articles using the method found in a Stack Overflow question. Here is the code:
https://stackoverflow.com/questions/60850305/how-do-i-render-links-from-a-certain-section-on-a-zendesk-help-centre-home-page
{{#each categories}}
{{#each sections}}
{{#is id 360001734738}}
{{#each articles}}
<a href="{{url}}">{{title}}</a>
{{/each}}
{{/is}}
{{/each}}
{{/each}}However, I am not able to retrieve the articles successfully and encountered the following error:
Error: InvalidTemplates - Template(s) with syntax error(s)
Validation error: `articles` does not existAccording to this link, the section object should contain articles: https://developer.zendesk.com/api-reference/help_center/help-center-templates/objects/#section-object
If you have any hints or solutions, I would appreciate your assistance. Thank you very much.