I'm guessing it's older documentation prior to inclusion of sass?
+[2016-04-09T04:23:04Z]somiajTrying to figure out how to parse string with jekyll (or is it just ruby syntax?). I'm parsing through site.static_files and isolating the files I want. But I need to extract some info from the file.path string, and then wrap some html around it +[2016-04-09T04:24:16Z]jaybesomiaj, learn about the [[ liquid ]] language +[2016-04-09T04:24:16Z]jekyllrb(liquid) (#1) https://github.com/Shopify/liquid/wiki/Liquid-for-Designers, or (#2) https://github.com/jekyll/jekyll/blob/master/lib/jekyll/filters.rb#L204, or (#3) http://jekyllrb.com/docs/templates/ +[2016-04-09T04:51:37Z]somiajjaybe: thanks, getting it figured out. +[2016-04-09T04:52:16Z]somiajthough is there a way to not to define so many dummy varaibles. I want to cycle though site.static_files backwards, but it seems I have to first assign a variable to reverse that array, then use that. {% assign ordered_list = site.static_files | reverse %}