Skip to content

Commit

Permalink
Fix config scaffolding.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimafisk committed Sep 29, 2019
1 parent 71bd150 commit 668e85e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 3 additions & 0 deletions defaults/assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ package defaults
var Assets = map[string][]byte{
"/assets/css/main.css": []byte(`body {
background-color: red;
}
h1 {
font-size: 2rem;
}`),
}
1 change: 1 addition & 0 deletions defaults/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ var Config = map[string][]byte{
"port": 3000
}
}`),
"/.gitignore": []byte(`public`),
}
7 changes: 0 additions & 7 deletions defaults/content.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
package defaults

var Content = map[string][]byte{
"/config.json": []byte(`{
"baseurl": "http://example.org/",
"title": "My New Plenti Site",
"types": {
"pages": "/:filename"
}
}`),
"/content/pages/_archetype.json": []byte(`{
"title": "",
"desc": "",
Expand Down

0 comments on commit 668e85e

Please sign in to comment.