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…
head.hbs partial
This partial is used as a beginning of your theme's *.hbs files in every file which will display the head of your website: {{> head}}…
Introduction - partials
Partials are reusable fragments of your website's code, placed in separate files to simplify development and maintenance. They are located in the partials directory of…
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…