1
0
Fork 0
mirror of https://github.com/gcushen/hugo-academic.git synced 2025-07-19 23:15:17 +02:00
hugo-academic-mirror/wowchemy-cms
George Cushen 1d58e5e819 feat: rename assets/images/ to assets/media/ and auto detect sharing image
The file uploader in Wowchemy CMS has also been updated to reflect the change.

BREAKING CHANGES:
- rename assets/images/ to assets/media/
- move default social sharing image (if any) to assets/media/sharing.*
2021-02-20 17:28:11 +00:00
..
data feat: rename assets/images/ to assets/media/ and auto detect sharing image 2021-02-20 17:28:11 +00:00
functions fix: new cms options 2021-02-09 21:45:52 +00:00
templates feat: add options for branch, local_backend, and publish_mode (editorial flow) 2021-02-09 21:44:47 +00:00
config.yaml feat: add options for branch, local_backend, and publish_mode (editorial flow) 2021-02-09 21:44:47 +00:00
go.mod feat: add Wowchemy CMS module 2021-02-03 20:32:25 +00:00
README.md feat: add support for emoji lists 2021-02-10 07:55:09 +00:00

Wowchemy CMS

A Content Management System (CMS) for the Wowchemy website builder.

Built upon the open source Netlify CMS and Netlify Identity projects.

Install

  1. Edit config/_default/config.toml to install the wowchemy-cms Hugo Module so that you have something like:

    [module]
      # Any existing modules here...
      [[module.imports]]
        path = "github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms"
      [[module.imports]]
        path = "github.com/wowchemy/wowchemy-hugo-modules/wowchemy"
    
  2. Create a content/admin/index.md file containing:

    ---
    type: wowchemycms
    outputs:
      - wowchemycms_config
      - HTML
    ---
    
    
  3. (Optional) If your Git repository's branch is not main, define it in config/_default/params.toml:

    [cms]
      branch = "master"