I use rake to generate a new post. The yaml is
category:
tags:[]
When I change the yaml like this
category:test
tags:[test]
the css does not work …
I use the jekyll bootstrap ‘s theme the minimum.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need a space between the colon and the content. Instead of:
Try:
And, of course, make sure your template is setup properly moving forward. I’m not sure about leaving an empty ‘category’. I would suggest making your template output
category: defaultor the something like that to avoid any issues.