The theme provides a lot of layouts but none of them are being used by default, other than the "default.html" layout that is automatically used by Jekyll. Update the _config.yml file to assign as many default layouts as possible. For example:
defaults:
-
scope:
path: "blog/" # an empty string here means all files in the project
type: "posts" # previously `post` in Jekyll 2.2.
values:
layout: "blog-item"
Edit: Be sure to update the documentation for things like blog post, events, and news items that currently say you have to set the layout frontmatter yourself. This will no longer be necessary after default layouts have been specified for them.
The theme provides a lot of layouts but none of them are being used by default, other than the "default.html" layout that is automatically used by Jekyll. Update the
_config.yml
file to assign as many default layouts as possible. For example:See the Jekyll documentation for details on how to implement this.
Edit: Be sure to update the documentation for things like blog post, events, and news items that currently say you have to set the
layout
frontmatter yourself. This will no longer be necessary after default layouts have been specified for them.