This is the latest version of the default theme for Felix Felicis.
$ liquidluck install octopress
Git clone this repo, and place it in your blog:
your_blog/
settings.py
content/
_themes/
octopress/
You can use git submodule for convience:
$ git submodule add git://github.com/lepture/liquidluck-theme-octopress.git _themes/octopress
Edit your settings.py, change your theme to:
theme = 'octopress'
You can customize your theme with theme_variables
.
- Change Navigation (example)
theme_variables = {
'navigation': [
('Home', '/'),
('Life', '/life/'),
('Work', '/work/'),
],
}
- Google Analytics
theme_variables = {
'analytics': 'UA-xxxx',
}
- Disqus Comment Support
theme_variables = {
'disqus': 'your-disqus-shortname',
}