It is the mynt sources of my 'No Word about Onion' blog: English version | Russian version.
In fact, this one is implemented with a bit modified version of mynt.
If you (ever) want to run this locally, you'll need to:
-
Clone this blog repository:
git clone git@github.com:shamansir/blog.git
-
Then clone my fork of mynt:
git clone git@github.com:shamansir/mynt.git
-
Run there this command:
cd ./mynt python setup.py install
-
Run
make
from the blog directory at least once (if it won't findsass
binary, that's ok, just procced to next step):cd ./blog make
-
Install Compass, to use it from command-line (or CodeKit to compile SASS files on the fly)
- Configure it to compile
.sass
-files from./blog/shared/_assets/css/_sass/
directory to both:./blog/.site/assets/css
directory./blog/.site/ru/assets/css
directory
- Configure it to compile
-
Run
make serve
ormake watch
from the blog directory, so it will host a version of blog athttp://127.0.0.1:8080/
, and Compass/CodeKit will be watching for changes of.sass
-filescd ./blog make serve