diff --git a/website/site/data/updates.yml b/website/site/data/updates.yml index 9fc10f15..452e8dd6 100644 --- a/website/site/data/updates.yml +++ b/website/site/data/updates.yml @@ -6,36 +6,27 @@ updates: - date: 2018-02-21 version: '1.2.2' description: Fixes ES5 transpiling. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.2.2' - date: 2018-02-21 version: '1.2.1' description: Allows label_singular config for collections and lists and distinct frontmatter delimiters. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.2.1' - date: 2018-02-13 version: '1.2' description: Adds support for multiple frontmatter formats and custom delimiters, UI improvements. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.2.0' - date: 2018-01-25 version: '1.1' description: You can now register external backends and we improved metadata handling. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.1.0' - date: 2018-01-23 version: '1.0.4' description: Fixes various UI bugs and adds expand / collapse functionality to the object widget. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.0.4' - date: 2018-12-19 version: '1.0.3' description: Small bug fix release. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.0.3' - date: 2018-12-07 version: '1.0.2' description: Small bug fix release. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.0.2' - date: 2018-12-07 version: '1.0.1' description: Small bug fix release. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.0.1' - date: 2018-12-07 version: '1.0.0' description: The first major release of Netlify CMS with an all-new UI, revamped documentation and much more. - url: 'https://github.com/netlify/netlify-cms/releases/tag/1.0.0' diff --git a/website/site/layouts/index.html b/website/site/layouts/index.html index 50734057..4a7f63eb 100755 --- a/website/site/layouts/index.html +++ b/website/site/layouts/index.html @@ -36,7 +36,7 @@
    {{ range .Site.Data.updates }} {{ range first 3 . }} -
  1. {{ .description | markdownify }}
  2. +
  3. {{ .description | markdownify }}
  4. {{ end }} {{ end }}
diff --git a/website/site/static/admin/config.yml b/website/site/static/admin/config.yml index c0a53338..c23efe4f 100644 --- a/website/site/static/admin/config.yml +++ b/website/site/static/admin/config.yml @@ -16,9 +16,20 @@ collections: # A list of collections the CMS should be able to edit - {label: "Title", name: "title", widget: "string", tagname: "h1"} - {label: "Position", name: "position", widget: "number"} - {label: "Body", name: "body", widget: "markdown"} - - name: notifications - label: Notifications + - name: updates + label: Updates files: + - name: releases + label: Releases + file: website/site/data/updates.yml + fields: + - name: updates + label: Releases + widget: list + fields: + - {name: version, label: Version} + - {name: date, label: Date, widget: date} + - {name: description, label: Description} - name: notifications label: Notifications file: website/site/data/notifications.yml