Hello,
I have implemented Netlify CMS on my site in Hugo, it works very well for blog posts. I’m trying to include the authors (so I can link them to the blog posts) but now I have a problem. Locally I can see my collection but when I push in dev it tells me “no entries”.
config.yml
backend:
name: git-gateway
branch: blog
media_folder: static/assets/images/upload
public_folder: /images/upload
local_backend: true
collections:
- name: "team"
label: "Team"
files:
- name: "members"
label: "Members"
file: "content/fr/team.yml"
fields:
- name: "member"
label: "Member"
widget: list
fields:
- {label: "Prénom Nom", name: "name", widget: "string"}
- {label: "Poste", name: "job", widget: "string"}
- {label: "Linkedin", name: "linkedin", widget: "string"}
- {label: "Twitter", name: "twitter", widget: "string"}
data/fr/team.yml
- name: "Tim Berners-lee"
job: Chief
linkedin: "https://www.linkedin.com/in/tim/"
twitter: "https://twitter.com/tim"
- name: "John Doe"
job: Consultant
linkedin: "https://www.linkedin.com/in/john/"
twitter: "https://twitter.com/john"
Dev branch :
Local :