Notes

Notes scratchpad


Luke Lowrey
Luke Lowrey
- 1 min read

I want a home for content that is not quite a tweet and not quite a blog post. Anything tagged "Note" on my site will not appear on the main list but will display inline at notes.

Ghost lets me do this by altering my routes.yml to exclude note tagged items from the index and include them here using a template called tag-inline-content

collections:
  /:
    permalink: /{slug}/
    template: index
    filter: 'tag:-note'    
  /notes/:
    permalink: /{slug}/
    template: tag-inline-content
    filter: 'tag:note'  
    data: tag.note