+[2015-07-19T18:18:02Z]ohstopityouHello +[2015-07-19T18:19:38Z]ohstopityouDependency Error: Yikes! It looks like you don't have jekyll-sass-converter or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full error message from Ruby is: 'dlopen(/Users/<user_name>/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/x86_64-darwin15/digest/sha1.bundle, 9): Library not loaded: /usr/local/lib/libcrypto.1.0.0.dylib Referenced from: /Users/<user_name>/.rvm/rubies/ruby-2.2.1/l +[2015-07-19T18:19:46Z]ohstopityoucan someone please help me out with this error? +[2015-07-19T18:19:54Z]ohstopityouI have jekyll-sass-convertor installed +[2015-07-19T20:13:46Z]gynteryou lid libcrypto
+[2015-07-20T19:08:15Z]abyssalWhiteShoehey guys, I've been trying to find how can I increment a loop in jekyll but without success. Anyone got an idea ? Basically I want to show my posts 10 by ten http://stackoverflow.com/questions/31523833/increment-loop-counter-in-jekyll +[2015-07-20T19:08:16Z]jekyllrbTitle: html - Increment loop counter in Jekyll - Stack Overflow (at stackoverflow.com) +[2015-07-20T19:12:44Z]gynterabyssalWhiteShoe: do {% assign count = count | plus: 1 %} in the loop +[2015-07-20T19:13:17Z]gynterand to break the loop when limit is reached: {% if count > 10 %}{% break %}{% endif %} somewhere in the loop +[2015-07-20T19:13:29Z]gynterthis must be after the assign thou