Creator — Building a Ghost Theme (Work Log)

Back to project

Building Creator, a free open-source multipurpose Ghost theme — documented step by step, in the open.

Build log 24 Jul 2026 1 min read

Part 24 — Building author and tag archive pages

Built the taxonomy pages Ghost generates automatically.

Templates

  • author.hbs — bio, avatar, that author's posts.
  • tag.hbs — tag header + description + filtered posts.

Context data

{{#author}} {{name}} · {{bio}} {{/author}}
{{#tag}}   {{name}} · {{description}} {{/tag}}

Pagination

{{pagination}}
These come "free" from Ghost's taxonomies — you just style them. Good reminder of how much Ghost hands you.

Advertisement