I'm trying to build a catalogue like a website with vintage processors in Jekyll. They are structured like so: Manufacturer/type/processor.
For example: AMD / K6 / K6-166ALR
I am a little puzzled on how to do this. K6-166ALR.html would be the file with the processor details but should I use categories or collections here? Could you please point me in the right direction?
If I've understood well your question, you could use the following solution:
The config file would look like this:
_config.yml
And the layouts should be like this:
_layouts/manufacturer.html
_layouts/type.html
This way, some examples of your content could be:
_manufacturers/AMD.html
_types/K6.html
_processors/K6-166ALR.html
You would only need a handmade page to display the manufacturers. The rest would be generated from the info of your collections.
I hope it helps, comment if something's not clear or I didn't understand your question.