Creator — Building a Ghost Theme (Work Log)
Back to projectBuilding Creator, a free open-source multipurpose Ghost theme — documented step by step, in the open.
Build log
10 Jul 2026
1 min read
Part 10 — Building reusable partials
Refactored repeated markup into partials to keep templates DRY.
What I extracted
partials/post-card.hbspartials/site-header.hbspartials/site-footer.hbs
Using them
{{> site-header}}
{{#foreach posts}}
{{> post-card}}
{{/foreach}}
{{> site-footer}}
Passing data in
{{> post-card class="featured"}}
Every collection page in Creator now reuses one card. Fix it once, fixed everywhere.
Advertisement