Free theme for Ghost prepared by Spin.
This theme is derived from Portfolio-Free-Ghost-Theme-v.1.2.0, provided by GavickPro. Greate Thanks for so awsome free theme!
I'm trying to modify it !
##v0.0.1
- jiathis support (default.hbs & post.hbs & assets/css/main.css)
- change <pre></pre> and <code></code> style
- some detail modification
##v0.0.2
- upgrade to Portfolio v1.4.0 to support built in navigation
- tag cloud support
note that files in thecoredirectory should not be placed into themes!!!! Do the follows:
2.1 addcore/core-server-helpers tag_cloud.jstoghost/core/server/helpers/tag_cloud.js
this is the tags api call to generate all tags
2.2 addcore/core-server-helpers-tpl tag_cloud.hbstoghost/core/server/helpers/tpl/tag_cloud.hbs
this is the tag_cloud template
you can use {{tag_cloud}} to generate the html content in the template, and you can modify it as you like
2.3 modify theghost/core/server/helpers/index.jsfile:
addcoreHelpers.tag_cloud = require('./tag_cloud');(about line 40)
addregisterAsyncThemeHelper('tag_cloud', coreHelpers.tag_cloud);(about line 121)
seecore-server-helpers index.jsas reference