About

Starter theme for Hexo implemented with Jade and Less. This theme is intended be a starting point for anyone who is interested in creating Hexo theme using Jade.

This theme includes Hashgrid for development helper. Just press ā€˜gā€™ on your local instance to see it in action.

To set up your own dev helper follow these instructions:

  • For CSS, just put your stylesheets inside [theme_root]/css/_dev/ and import them in [theme_root]/css/dev.less.
  • For Javascripts, since there is no bundling available, you have to include any third party library manually. See the last line of [theme_root]/layout/_partial/site/head.jade, include your third party scripts before != js("javascript/dev") and initialize those scripts on [theme_root]/source/javascript/dev.js.

Why Jade?

  • Less typing because Jade uses indentation to convey html tag structure
  • More flexible template inheritance with extend and block

Why Less?

Stylus is great, but it does not fully support CSS syntax. Thus if you already have some base stylesheets in CSS you have to convert them to Stylus first to be safe. By using Less, you can just drop in your CSS files and it will work.