A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
@mixin box-shadow($top, $left, $blur, $color, $inset: false) { | |
@if $inset { | |
-webkit-box-shadow:inset $top $left $blur $color; | |
-moz-box-shadow:inset $top $left $blur $color; | |
box-shadow:inset $top $left $blur $color; | |
} @else { | |
-webkit-box-shadow: $top $left $blur $color; | |
-moz-box-shadow: $top $left $blur $color; | |
box-shadow: $top $left $blur $color; | |
} |
username: vagrant | |
password: vagrant | |
sudo apt-get update | |
sudo apt-get install build-essential zlib1g-dev git-core sqlite3 libsqlite3-dev | |
sudo aptitude install mysql-server mysql-client | |
sudo nano /etc/mysql/my.cnf |
# CHARSET | |
AddDefaultCharset utf-8 | |
# DEFLATE | |
<IfModule mod_deflate.c> | |
AddOutputFilterByType DEFLATE text/html text/plain text/css | |
AddOutputFilterByType DEFLATE application/javascript application/json | |
AddOutputFilterByType DEFLATE text/xml application/xml | |
AddOutputFilterByType DEFLATE application/rss+xml application/atom+xml |
@font-face { | |
font-family: 'EntypoRegular'; | |
src: url('font/entypo.eot'); | |
src: url('font/entypo.eot?#iefix') format('embedded-opentype'), | |
url('font/entypo.woff') format('woff'), | |
url('font/entypo.ttf') format('truetype'), | |
url('font/entypo.svg#EntypoRegular') format('svg'); | |
font-weight: normal; | |
font-style: normal; | |
} |
[{oxcontent ident="OXCMSIDENTIFIER"}] |
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
Based on Node.js/Express.js and flat markdown files. This is the main (and only) code file,
containing all the logic and code, and is written in literate Coffeescript.
The Idea is that you just put your articles as markdown files (*.md) in the /posts
folder, and Influenza
takes care of all the other stuff.
Only the following npm modules are used:
express = require "express"
exphbs = require "express-handlebars"