mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 22:34:01 -05:00
Added content/settings
folder
refs #9528 refs TryGhost/Ghost-CLI#681 - added a new `/content/settings` folder - bumped Ghost-CLI engine requirement to >= 1.7.0
This commit is contained in:
parent
7273786459
commit
c8b29724e0
3 changed files with 25 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -48,6 +48,7 @@ Session.vim
|
|||
/content/tmp/*
|
||||
/content/data/*
|
||||
/content/logs/*
|
||||
/content/settings/*
|
||||
/content/apps/**/*
|
||||
/content/themes/**/*
|
||||
/content/images/**/*
|
||||
|
@ -55,6 +56,7 @@ Session.vim
|
|||
/content/adapters/scheduling/**/*
|
||||
!/content/themes/casper/**
|
||||
!/README.md
|
||||
!/content/**/README.md
|
||||
|
||||
# Changelog, which is autogenerated, not committed
|
||||
CHANGELOG.md
|
||||
|
|
22
content/settings/README.md
Normal file
22
content/settings/README.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Content / Settings
|
||||
|
||||
### routes.yaml
|
||||
|
||||
<!-- TODO: make a better description here and link to the docs -->
|
||||
|
||||
This is how the default `routes.yaml` file looks like:
|
||||
|
||||
```yaml
|
||||
routes:
|
||||
|
||||
collections:
|
||||
/:
|
||||
route: '{globals.permalinks}'
|
||||
template:
|
||||
- home
|
||||
- index
|
||||
|
||||
resources:
|
||||
tag: /tag/{slug}/
|
||||
author: /author/{slug}/
|
||||
```
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"engines": {
|
||||
"node": "^4.5.0 || ^6.9.0 || ^8.9.0",
|
||||
"cli": "^1.3.0"
|
||||
"cli": "^1.7.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"amperize": "0.3.7",
|
||||
|
|
Loading…
Reference in a new issue