+ [2015-07-19T18:19:38Z] ohstopityou Dependency 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] ohstopityou can someone please help me out with this error?
+ [2015-07-19T18:19:54Z] ohstopityou I have jekyll-sass-convertor installed
+ [2015-07-19T20:13:46Z] gynter you lid libcrypto

message no. 103964

Posted by kaizenDev in #jekyll at 2015-07-19T16:11:53Z

On what do you decide to go for jekyll or middleman? Or has it just grown like this?
+ [2015-07-20T19:08:15Z] abyssalWhiteShoe hey 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] jekyllrb Title: html - Increment loop counter in Jekyll - Stack Overflow (at stackoverflow.com)
+ [2015-07-20T19:12:44Z] gynter abyssalWhiteShoe: do {% assign count = count | plus: 1 %} in the loop
+ [2015-07-20T19:13:17Z] gynter and to break the loop when limit is reached: {% if count > 10 %}{% break %}{% endif %} somewhere in the loop
+ [2015-07-20T19:13:29Z] gynter this must be after the assign thou