Section page
Section page
The Section page template is rendered when a user navigates to https://{yoursubdomain}.zendesk.com/hc/{locale}/sections/{section_id}
.
Available properties
You can use the following property in the Section page template.
Name | Type | Description |
---|---|---|
section | object | A section object |
promoted_articles | array | An array of promoted article objects |
ticket_forms | array | An array of ticket form objects |
help_center | object | A help_center object that holds information and settings about the current help center |
settings | object | A settings object with custom settings for the current theme |
signed_in | boolean | Whether the user is logged in or not |
featured_posts | array | An array of featured post objects |
brand | object | A brand object representing the current brand |
user | object | A user object representing the current user |
Available helpers
You can use the following helpers in this page template. You can also use any built-in helpers, global helpers, or global advanced helpers.
Name | Description |
---|---|
breadcrumbs | Breadcrumbs for the current page. See breadcrumbs helper |
pagination | Pagination links. See pagination helper |
subscribe | A link to follow or unfollow new articles or comments in the section |
Example
<nav class="sub-nav">
{{breadcrumbs}}
{{subscribe}}
</nav>
<h1>{{section.name}}</h1>
<p class="section-description">{{section.description}}</p>
{{#if section.articles}}
<ul class="article-list">
{{#each section.articles}}
<li class="article">
<a href="{{url}}">{{title}}</a>
</li>
{{/each}}
</ul>
{{else}}
<i class="section-empty">
<a href="{{section.url}}">{{t 'empty'}}</a>
</i>
{{/if}}
{{pagination}}