Kodex is a theme designed for Ghost with a timeline main page.
More precisely, it's a fork of Ghost default theme : Casper.
It takes again the bases of Casper and is enhanced by the same features of awesome Odin's theme. The main page display the posts with a timeline.
Any suggestion? report a bug? Open an Issue !
Hope you'll enjoy this theme !
- Tested with Ghost 0.11.7
- Display post's list as a timeline (main page + author posts).
- Display individual post with Casper display
- Fully responsive (for mobiles and tablets)
- Google Analytics (configurable by code injection in the admin area)
- Pace loading progress bar (configurable by code injection in the admin area)
- Disqus comments (configurable by code injection in the admin area)
- Prism Syntax Highlighting (no configuration needed)
- RRSSB Social Sharing Buttons (no configuration needed)
- Font Awesome home page Social Link Icons (configurable by code injection in the admin area)
Live demo here!
Clone or download the content of this repository inside your Ghost theme folder.
$ cd /path-to-ghost-root
$ git clone https://github.com/thlb/kodex/.git content/themes/kodex
Then restart Ghost, and select the theme on the Admin control pannel.
Take a look here
Pace's Javascript is already included. You just have to specify the theme of the progress bar. Choose a theme here, and paste the css code in the code injection (admin area).
Here's the css code of the 'minimal' theme :
<style>
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace-inactive {
display: none;
}
.pace .pace-progress {
background: #29d;
position: fixed;
z-index: 2000;
top: 0;
right: 100%;
width: 100%;
height: 2px;
}
</style>
Set your Google Analytics id in the code injection (admin area).
// to enable Google Analytics
var ga_id = 'YOUR-ID';
Coming soon...
No configuration needed...
No configuration needed...
Released under the MIT License.