Skip to content

Commit 9fec542

Browse files
committed
Add theme
1 parent 82b491e commit 9fec542

File tree

377 files changed

+27386
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

377 files changed

+27386
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Wowchemy CMS
2+
3+
A Content Management System (CMS) for the [Wowchemy](https://wowchemy.com) website builder.
4+
5+
Built upon the open source [Netlify CMS](https://www.netlifycms.org/) and [Netlify Identity](https://docs.netlify.com/visitor-access/identity/#enable-identity-in-the-ui) projects.
6+
7+
## Install
8+
9+
1. Edit `config/_default/config.yaml` to install the `wowchemy-plugin-netlify-cms` module:
10+
11+
```yaml
12+
module:
13+
imports:
14+
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms
15+
```
16+
17+
2. Create a `content/admin/index.md` file containing:
18+
19+
```yaml
20+
---
21+
type: wowchemycms
22+
private: true
23+
outputs:
24+
- wowchemycms_config
25+
- HTML
26+
---
27+
28+
```
29+
30+
3. (Optional) If your Git repository's branch is **not** `main`, define it in `config/_default/params.yaml`:
31+
32+
```yaml
33+
extensions:
34+
cms:
35+
branch: master
36+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module:
2+
mounts:
3+
- source: data
4+
target: data
5+
- source: functions
6+
target: layouts/partials/mod-wowchemy-cms
7+
- source: templates
8+
target: layouts/wowchemycms
9+
outputFormats:
10+
wowchemycms_config:
11+
baseName: config
12+
isPlainText: true
13+
mediatype: application/yaml
14+
notAlternative: false
15+
mediaTypes:
16+
application/yaml:
17+
suffixes:
18+
- yml

0 commit comments

Comments
 (0)