latest 9 messages by Woovie

+ [2017-06-17T07:10:33Z] Woovie Actually I think this is a solution https://github.com/avillafiorita/jekyll-datapage_gen
+ [2017-06-17T07:01:58Z] Woovie Still very new to jekyll.
+ [2017-06-17T07:01:48Z] Woovie Would this be collections?
+ [2017-06-17T06:58:31Z] Woovie Or is there another way to do it?
+ [2017-06-17T06:58:23Z] Woovie So I want to have pages like /item/item-name.html and I have the list of the items in a JSON file and can use liquid to generate the file names, but how can I use jekyll to programmatically create those pages?
+ [2017-06-17T00:05:14Z] Woovie My next issue is using that data array, I want to be able to go to /item/item-name.html, I got the URLs generated, but does jekyll have some way of actually dynamically making those HTML files based on a JSON array? Or should I do that outside of jekyll.
+ [2017-06-16T23:41:17Z] Woovie It looks like item[0] did it.
+ [2017-06-16T23:28:33Z] Woovie how I should go about arranging the array for ease of use in jekyll.
+ [2017-06-16T23:28:33Z] Woovie Hello, I am using jekyll for the first time, specifically interacting with JSON data and looping through it. Here's my JSON array: https://pastebin.com/raw/vfE1wpj7 how exactly would I go about getting the name of the item? Here's my code so far for the page loading this: https://pastebin.com/raw/StTRPm2z my intent is to get the name of the item. Would it be better to make a value in the object for the URL and name? Not sure