如何在Netlify CMS的根目录下访问.yml文件?

时间:2020-07-16 03:23:30

标签: yaml netlify-cms

我正试图授予Netlify CMS对包含博客站点作者的数据文件的访问权限,但是我无法从文件的根目录获取记录。由于我使用的网站生成器,我需要将记录放在根目录下。有什么我可以代替的星号来做到这一点吗?

- name: "settings"
    label: "Settings"
    files:
      - name: "authors"
        label: "Authors"
        file: "_data/authors.yml"
        fields:
          - name: "*****"
            label: "Authors"
            widget: "list"
            fields:
              - {label: "Name", name: "name", widget: "string"}
              - {label: "Last Name", name: "last_name", widget: "string"}
              - {label: "First Name", name: "first_name", widget: "string"}
              - {label: "Display Name", name: "display_name", widget: "string"}
              - {label: "Bio", name: "bio", widget: "markdown"}

0 个答案:

没有答案