Partials (6)
menu.hbs partial
The menu partial is used for rendering menus at your website. This partial should get a param with a structure of the menu to render:…
pagination.hbs partial
The pagination partial is responsible for rendering pagination links on your website's homepage, tag pages, and author pages: {{> pagination}} If you have not included…
footer.hbs partial
This partial is used as an ending for your theme *.hbs files - in every file which should display your website's footer: {{> footer}} With…
header.hbs partial
This partial is used as a beginning of your theme's *.hbs files in every file which will display the header of your website: {{> header}}…
Introduction - partials
Partials are common fragments of your website which are placed in separate files for easy reuse. They are located in the partials directory of your…
Creating custom partials
Theme developers can create custom partials in their themes. It is handy if you want to reuse your code in many views. To create a…