diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-02-03 19:38:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-03 19:38:24 +0100 |
commit | 8fe56e0b34eac47b92be6cc99ca95c67eaf0affc (patch) | |
tree | bd3061fa31cbbc9207cbaa5c02f23dec150aa906 /static/admin/config.yml | |
parent | eca7ecabd386edc0e138d6d7a1de2881dacffa41 (diff) | |
download | kronika-8fe56e0b34eac47b92be6cc99ca95c67eaf0affc.tar.gz kronika-8fe56e0b34eac47b92be6cc99ca95c67eaf0affc.zip |
Netlify cms (#7)
* Add netlify CMS * Add netlify.toml * Add example media library * Add Netlify Identity * Fix post path * Add content * Add body * Fix date format * Add site url * Add image * Disable editorial workflow * Add date path * Add file extension * Use the latest release * Fix slug * Filename on preview path * Remove filenames
Diffstat (limited to 'static/admin/config.yml')
-rw-r--r-- | static/admin/config.yml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/static/admin/config.yml b/static/admin/config.yml new file mode 100644 index 0000000..2d710c0 --- /dev/null +++ b/static/admin/config.yml @@ -0,0 +1,56 @@ +backend: + name: git-gateway + +#publish_mode: editorial_workflow +display_url: https://puszcza.netlify.com +site_url: https://puszcza.netlify.com +locale: 'pl' + +media_folder: 'static/media' +media_library: + name: uploadcare + config: + publicKey: demopublickey + +collections: + - name: posts + label: 'Wpisy' + folder: 'wpisy' + slug: '{{title}}' + path: '{{year}}/{{month}}/{{day}}/{{slug}}' + preview_path: 'kronika/{{year}}/{{month}}/{{day}}/{{title}}' + preview_path_date_field: 'date' + editor: + preview: false + fields: + - label: 'Tytuł' + name: title + widget: string + required: true + + - label: 'Autor' + name: author + widget: string + required: true + + - label: 'Data' + name: date + widget: datetime + dateFormat: DD.MM.YYYY + timeFormat: false + required: true + + - label: 'Kategorie/Tagi' + name: category + widget: list + required: false + + - label: 'Zdjęcie okładki - link' + name: image + widget: string + required: false + + - label: 'Wpis' + name: body + widget: markdown + required: true |