Any ideas on how to make a deeper sub-folder structure for the Netlify CMS template that serves the content pages. Is it possible to be done with Netlify CMS config.yml template.
That's what I have currently:
/Content / Topic Folder / Topic section folder / Language files.md
Currently I have this
backend:
name: git-gateway
branch: master
media_folder: static/img
public_folder: /img
collections:
- name: "about"
label: "About"
folder: "content/about"
create: true
slug: "{{year}}-{{month}}-{{day}}-{{slug}}"
fields:d
- {label: "Layout", name: "layout", widget: "hidden", default: "blog"}
- {label: "Title", name: "title", widget: "string"}
- {label: 'URL', name: 'URL', widget: 'string' }
- {label: "Publish Date", name: "date", widget: "datetime"}
- {label: "Featured Image", name: "thumbnail", widget: "image"}
- {label: "Body", name: "body", widget: "markdown"}