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 21 Jul 2026 1 min read

Part 21 — Creating a custom project/showcase layout

Built projects.hbs and project-details.hbs — a showcase, not a blog list.

Projects index

  • Grid of project cards with logo/feature image.
  • Each links to its container page.

Project container page

{{#get "posts" filter="tag:{{primary_tag.slug}}+tag:hash-project-detail"
        order="published_at asc" as |steps|}}
  {{#foreach steps}}
    <li>{{@number}}. <a href="{{url}}">{{title}}</a></li>
  {{/foreach}}
{{/get}}

Result

A project overview that lists its build-log steps in order — like a mini table of contents. Exactly what you're reading now.

Advertisement