diff options
author | HombreLaser <sebastian-440@live.com> | 2023-09-12 16:48:21 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-09-12 16:48:21 -0600 |
commit | 0664c58cca6205cff6b025ec98cb0be338d8e9e3 (patch) | |
tree | f65cc3203d15b312f9de63a8d3a6fdef0a88d578 /_config.yml | |
parent | e782c39d0539bc552ba1008157e87c696bd67266 (diff) |
Add default author and layout for posts and drafts
Diffstat (limited to '_config.yml')
-rw-r--r-- | _config.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_config.yml b/_config.yml index 781e7b2..4578913 100644 --- a/_config.yml +++ b/_config.yml @@ -30,6 +30,22 @@ isso: '' # Set this to your disqus shortname to enable comments via disqus. Set to '' to disable disqus. disqus: '' +defaults: + - + scope: + path: "" + type: "posts" + values: + layout: "post" + author: "hombrelaser" + - + scope: + path: "" + type: "drafts" + values: + layout: "post" + author: "hombrelaser" + permalink: /:year/:month/:title paginate: 5 |