Closed pgyogesh closed 6 years ago
@pgyogesh The layout in your posts' front-matter should be layout: single
, not layout: post
.
Better yet, you can define the layout once in config.yml
as following:
defaults:
- scope:
path: ""
type: posts
values:
layout: single
author_profile: true
read_time: true
comments: # true
share: true
related: true
So you don't have to include it in every single post.
Closing as the solution is exactly what @pgyogesh proposed above. Set layout: single
instead of post
... either by manually changing it in all your _posts/
or removing layout
from them and setting it once with a front matter default in _config.yml
.
bundle update
.bundle exec jekyll build
.Environment informations
Expected behavior
Post Layout like below: https://mmistakes.github.io/minimal-mistakes/jekyll/post-exclude-search/
Steps to reproduce the behavior
Visit:
http://pgyogesh.com/blog/greenplum/python/parallel-restore-using-python/
My Repo: https://github.com/pgyogesh/blog