about summary refs log tree commit diff
path: root/static/admin/config.yml
blob: 51dbc37bed1ee311cfb3e9c6c885b03b21b2fe87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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/api'

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