Jekyll does not generate messages

I use bloggy gem to host jekyll's blog in my current rails application. Basically, you have a normal jekyll build, but then you put your files in the config / jekyll directory and generate the files in the public / blog directory.

However, when I run jekyll build , none of my messages are generated.

Here is the configuration file:

 markdown: rdiscount permalink: /:title.html destination: ../../public/blog exclude: - Rakefile - Gemfile - .gitignore 

Here is my directory structure in config / jekyll

 ./_config.yml ./_layouts ./_layouts/default.html ./_layouts/page.html ./_layouts/post.html ./_posts ./_posts/2013-06-07-dear-nsa.md ./_posts/2013-06-07-wut.markdown ./atom.xml ./css ./css/screen.css ./css/syntax.css ./index.html 

And here is the generated public / blog directory structure

 ./atom.xml ./css ./css/screen.css ./css/syntax.css ./index.html 

The key I came up with: if I specify the source as _posts, it will generate html versions of my posts in the public / blog ... but it will not include the css or index page.

+1
ruby ruby-on-rails jekyll
Jun 07 '13 at 17:52
source share

No one has answered this question yet.

See similar questions:

83
Jekyll message not created

or similar:

83
Jekyll message not created
3
Error starting Jekyll locally on Windows 10
2
Jekyll frontmatter, which appeared on my website, and not correctly inserted into my default layout
2
Jekyll paginate blog as a subdirectory
one
"New Jekyll page" is not displayed by default css.stylesheet: only index.html is working fine
one
Jekyll Rails Blog Using Bloggy Gem: How To Use Rails Css To Blog On Each Assembly?
one
jekyll does not generate _posts
0
front question is ignored in blog posts
0
Jekyll 3.0.0-beta error - this is the @rb_sysopen directory
0
jekyll blog permalink breaks and yields "404 not found"



All Articles