diff options
author | EuAndreh <eu@euandre.org> | 2020-12-28 09:51:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-28 09:51:02 -0300 |
commit | 09736fde3c65f78c8d6896e9a171f70dce868ea9 (patch) | |
tree | 6289dad1a830b9fc56d9881c0b3590c9606407bc /_plugins/linter.rb | |
parent | linter.rb: Don't fail first build to avoid chicken and egg problem (diff) | |
download | euandre.org-09736fde3c65f78c8d6896e9a171f70dce868ea9.tar.gz euandre.org-09736fde3c65f78c8d6896e9a171f70dce868ea9.tar.xz |
Merge _layouts/cast.html into _layouts/post.html
Diffstat (limited to '_plugins/linter.rb')
-rw-r--r-- | _plugins/linter.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_plugins/linter.rb b/_plugins/linter.rb index 4db2b5f..c0059c9 100644 --- a/_plugins/linter.rb +++ b/_plugins/linter.rb @@ -51,12 +51,12 @@ module Jekyll COLLECTION_LAYOUTS = { 'page' => 'page', + 'slides' => 'slides', 'articles' => 'post', 'pastebins' => 'post', 'tils' => 'post', - 'slides' => 'slides', - 'podcasts' => 'cast', - 'screencasts' => 'cast' + 'podcasts' => 'post', + 'screencasts' => 'post' } def assert_frontmatter_fields(name, document) |