Skip to content
This repository has been archived by the owner on Nov 12, 2021. It is now read-only.

Commit

Permalink
Working prototype
Browse files Browse the repository at this point in the history
Working prototype. Blogposts/Pages finished
  • Loading branch information
Gustav Lindqvist committed Sep 22, 2014
1 parent 1cab5a1 commit 400dd97
Show file tree
Hide file tree
Showing 28 changed files with 1,230 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ build/Release
# Deployed apps should consider commenting this line out:
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
node_modules

Thumbs.db

.recognizer
*.html
53 changes: 53 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
module.exports = function (grunt) {

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

watch: {
css: {
files: ['assets/css/*.css'],
tasks: [],
options: {
livereload: true,
}
},
compass: {
files: ['sass/*.scss'],
tasks: ['compass:dev'],
options: {
livereload: false,
},
},
js: {
files: 'assets/js/*.js',
options: {
livereload: true,
}
},
html: {
files: '*.html',
options: {
livereload: true,
}
}
},
compass: {
dev: {
options: {
sassDir: 'sass',
cssDir: 'assets/css',
noLineComments: true,
outputStyle: 'compressed',
specify: 'sass/style.scss'
}
}
}
});

// Load tasks
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-watch');

// Register Production
grunt.registerTask('default', ['compass:dev','watch']);
};
6 changes: 6 additions & 0 deletions assets/css/animate.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions assets/js/collageplus.jquery.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "collageplus",
"title": "CollagePlus Gallery",
"description": "An image grid gallery plugin for jQuery.",
"keywords": [
"grid",
"gallery",
"photography",
"album",
"masonry"
],
"version": "0.3.3",
"author": {
"name": "Ed Lea",
"url": "http://edlea.com"
},
"maintainers": [
{
"name": "Ed Lea",
"email": "edleadesign@gmail.com",
"url": "http://edlea.com"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"bugs": "https://github.com/ed-lea/jquery-collagePlus/issues",
"homepage": "http://collageplus.edlea.com/",
"docs": "http://collageplus.edlea.com/",
"download": "https://github.com/ed-lea/jquery-collagePlus/zipball/master",
"dependencies": {
"jquery": ">=1.7"
}
}
1 change: 1 addition & 0 deletions assets/js/highlight.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 400dd97

Please sign in to comment.