New Microblog

I added a microblog section to my blog. You can see the hbs file I made to implement it here. I don't fully understand it ... it's a bit of a copy-paste job that incorporates some advice from Ghost discussion forums, but it seems to work.

I also added some lines to my routes.yaml file (indicated with **) to reference my microblog template and prevent microblog posts from appearing on the front page, respectively:


routes:
**  /microblog/: microblog**

collections:
  /:
    permalink: /{slug}/
    template: index
**    filter: tag:-[microblog]**

taxonomies:
  tag: /tag/{slug}/
  author: /author/{slug}/