A single page blog engine written in KnockoutJS.
src | ||
.bowerrc | ||
.gitignore | ||
bower.json | ||
gulpfile.js | ||
package.json | ||
README.md |
Project abandoned
This project is abandoned. It was a fun proof of concept but not really that useful. The code is left here only for reference.
Laine
Laine is a minimalistic, fully static blog engine which you can read all about at laine.nytsoi.net.
Installing for use
- Download the zip file from the downloads section.
- Extract Laine to
/path/to/yourblog/
. - Write your posts at
/path/to/yourblog/posts/
. - Write your pages at
/path/to/yourblog/pages/
. - Create index file at
/path/to/yourblog/index
. - Serve when hot with Nginx.
Installing for development
Requirements: NPM, Bower.
- Clone this repo.
cd /path/to/clone
npm install
bower install
- Write changes.
gulp
to compile development version todev/
and minified version todist/
.
Serving locally is done easily with
cd /path/to/clone/dev; python -m SimpleHTTPServer 8080
. You need a server
because browsers don't like AJAX requests over the file://
scheme.