Editing using Page CMS

I've setup Page CMS to help me write the posts using a nicer UI than just plain text. Took a bit to figure out the config for pelican-blog. But here it is:

media:
  input: images
  output: /images
content:
  - name: posts
    label: Posts
    path: content
    type: collection
    view:
      fields: [ Title, Published, Date ]
    fields:
      - name: status
        label: Status
        type: select
        default: 'published'
        options: 
          values:
            ['draft', 'hidden', 'skip', 'published']
      - name: date
        label: Date
        type: date
        required: true
      - name: modified-date
        label: Modification Date
        type: date
      - name: Title
        label: Title
        type: string
        required: true
      - name: Slug
        label: Slug
        type: string
        required: true
      - name: Author
        label: Author
        type: string
        default: 'First Last'
        required: true
      - name: tags
        label: Tags
        type: string
        list: true
      - name: summary
        label: Summary
        type: string
        required: true
      - name: body
        label: Body
        type: rich-text
        required: true

links

social