-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't include theme in posts #301
Comments
I have the same issue. I have followed the instruction in the help file, but none of the posts have any theme. I get the following errors in the console where jekyll is serving
|
I was having the same problems and after reading this, I managed to resolve it. Basically |
Yes, I meet that problem too!But it finally works after correcting the codes Q-Mart mentioned! |
I create a post using
rake post title="test"
, this is my test code:`---
layout: page
title: "test"
description: "this is description"
category: prml
tags: [book, prml]
{% include JB/setup %}
test one
test two
test three
`
This file is in _posts/, but when I open it in browser, it doesn't have theme as other webpages in root directory, it only has text. then I try to create a new post and copy the content of my ./about.md to it . However, the about.md in my root directory has theme, but that in _posts/ doesn't.
How to make all my posts have same theme as webpage in my root directory.
The text was updated successfully, but these errors were encountered: