Skip to content

Instantly share code, notes, and snippets.

View vram1980's full-sized avatar

Vincent Ramos vram1980

View GitHub Profile
@vram1980
vram1980 / gist:ec80fbbd1b4c8f3bd764
Last active August 29, 2015 14:17
Using AngularJS with jekyll
/*
* Credit goes to: https://tuananh.org/2015/01/14/using-angularjs-with-jekyl
*/
var myApp = angular.module('myApp', [], function($interpolateProvider) {
$interpolateProvider.startSymbol('[[');
$interpolateProvider.endSymbol(']]');
});
myApp.controller('TestCtrl', [