https://github.com/netlify-templates/kaldi-hugo-cms-templateを使用しています
config.yml に新しいコレクション (「ページ」) を作成しました。.md ファイルは site/content にあります。サイトのフロントエンドは、localhost と Netlify で正常に見えます。localhost:3000/admin でも「ページ」が表示され、編集できますが、mysite.netlify.com/admin/#collections/pages に移動すると、「ロード中のエントリ」しか表示されません。
ここに私のコレクションがあります
collections: # A list of collections the CMS should be able to edit
- name: "pages"
label: "Site pages"
folder: "site/content"
create: true #
fields:
- {label: Title, name: title, widget: string}
- {label: Description, name: description, widget: string}
- {label: Intro, name: intro, widget: object, fields: [{label: Heading, name: heading, widget: string}, {label: Description, name: description, widget: markdown}, {label: Subheading, name: subheading, widget: string}, {label: Primary call-to-action url, name: url, widget: string}, {label: Primary call to action, name: cta, widget: string}, {label: Secondary call-to-action url, name: url2, widget: string}, {label: Secondary call-to-action, name: cta2, widget: string}, {label: Blurbs, name: blurbs, widget: list, fields: [{label: Head, name: head, widget: string}, {label: Text, name: text, widget: markdown}]}]}
- {label: Outro, name: outro, widget: object, fields: [{label: Heading, name: heading, widget: string}, {label: Blurbs, name: blurbs, widget: list, fields: [{label: Image, name: image, widget: image}, {label: Text, name: text, widget: markdown}]}]}