Skip to content

Commit

Permalink
Update highlighting and information
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsenramon committed Oct 29, 2016
1 parent 9d4cab3 commit 704e82a
Show file tree
Hide file tree
Showing 184 changed files with 37,856 additions and 269 deletions.
2 changes: 1 addition & 1 deletion .bowerrc
@@ -1,3 +1,3 @@
{
"directory": "_vendor"
"directory": "_assets/bower"
}
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -3,4 +3,4 @@
*.sass-cache
/.asset-cache/*
/_site/*
/_vendor/*
/_assets/bower/*
33 changes: 15 additions & 18 deletions Gemfile.lock
@@ -1,19 +1,18 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.7.1)
activesupport (5.0.0.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.4.0)
autoprefixer-rails (6.4.0.3)
autoprefixer-rails (6.5.1.1)
execjs
colorator (1.1.0)
colored (1.2)
concurrent-ruby (1.0.2)
ethon (0.9.0)
ethon (0.9.1)
ffi (>= 1.3.0)
execjs (2.7.0)
extras (0.1.0)
Expand All @@ -22,8 +21,8 @@ GEM
addressable (~> 2)
ffi (1.9.14)
forwardable-extended (2.6.0)
html-proofer (3.0.6)
activesupport (~> 4.2)
html-proofer (3.3.1)
activesupport (>= 4.2, < 6.0)
addressable (~> 2.3)
colored (~> 1.2)
mercenary (~> 0.3.2)
Expand All @@ -32,7 +31,8 @@ GEM
typhoeus (~> 0.7)
yell (~> 2.0)
i18n (0.7.0)
jekyll (3.2.1)
jekyll (3.3.0)
addressable (~> 2.4)
colorator (~> 1.0)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
Expand All @@ -52,11 +52,10 @@ GEM
jekyll-paginate (1.1.0)
jekyll-sass-converter (1.4.0)
sass (~> 3.4)
jekyll-sitemap (0.11.0)
addressable (~> 2.4.0)
jekyll-sitemap (0.12.0)
jekyll (~> 3.3)
jekyll-watch (1.5.0)
listen (~> 3.0, < 3.1)
json (1.8.3)
kramdown (1.12.0)
liquid (3.0.6)
listen (3.0.8)
Expand All @@ -65,16 +64,14 @@ GEM
mercenary (0.3.6)
mini_magick (4.5.1)
mini_portile2 (2.1.0)
minitest (5.9.0)
nokogiri (1.6.8)
minitest (5.9.1)
nokogiri (1.6.8.1)
mini_portile2 (~> 2.1.0)
pkg-config (~> 1.1.7)
parallel (1.9.0)
pathutil (0.14.0)
forwardable-extended (~> 2.6)
pkg-config (1.1.7)
rack (1.6.4)
rb-fsevent (0.9.7)
rb-fsevent (0.9.8)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.11.1)
Expand All @@ -88,9 +85,9 @@ GEM
ethon (>= 0.8.0)
tzinfo (1.2.2)
thread_safe (~> 0.1)
uglifier (3.0.2)
uglifier (3.0.3)
execjs (>= 0.3.0, < 3)
yell (2.0.6)
yell (2.0.7)

PLATFORMS
ruby
Expand Down
6 changes: 6 additions & 0 deletions _assets/javascripts/application.js
@@ -1 +1,7 @@
//= require_self

// Initialize fluidbox

$(function () {
$('.fluidbox-trigger').fluidbox();
})
5 changes: 4 additions & 1 deletion _assets/javascripts/vendor.js
@@ -1,2 +1,5 @@
//= require jquery/dist/jquery
//= require jquery
//= require vendor/jquery-throttle-debounce.js
//= require fluidbox
//= require scrollreveal
//= require vendor/retina.js
9 changes: 9 additions & 0 deletions _assets/javascripts/vendor/jquery-throttle-debounce.js
@@ -0,0 +1,9 @@
/*
* jQuery throttle / debounce - v1.1 - 3/7/2010
* http://benalman.com/projects/jquery-throttle-debounce-plugin/
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/
(function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this);
1 change: 1 addition & 0 deletions _assets/stylesheets/dark.scss
Expand Up @@ -47,6 +47,7 @@ $article-paginator-color-hover: $gray-lightest;
// Vendors

@import "vendor/normalize";
@import "../bower/fluidbox/src/css/_fluidbox.scss";

// Settings

Expand Down
1 change: 1 addition & 0 deletions _assets/stylesheets/light.scss
Expand Up @@ -47,6 +47,7 @@ $article-paginator-color-hover: $gray-darkest;
// Vendors

@import "vendor/normalize";
@import "../bower/fluidbox/src/css/_fluidbox.scss";

// Settings

Expand Down

0 comments on commit 704e82a

Please sign in to comment.