Questions tagged [jekyll-bootstrap]

Jekyll-bootstrap is used to refer to the pre-built scaffold for the static blog generator Jekyll. It differs from Jekyll in that it includes Twitter Bootstrap assets and pre-built Liquid templates.

Jekyll Bootstrap is a scaffold for the static blog generator Jekyll

The Jekyll Bootstrap package incorporates the Jekyll dependencies (written in Ruby) and Twitter's Bootstrap assets (HTML, CSS, and JS) and prebuilt templates using Liquid.

Questions with this tag should be concerned specifically with the Jekyll Bootstrap project layout or Liquid templates. Questions related to running a web server with these tools should be instead tagged jekyll, and questions about publishing these sites via Github should be tagged with github-pages. Questions about only the Bootstrap component should be tagged with twitter-bootstrap.

Jekyll Bootstrap was created by Jade Dominguez, who also created Ruhoh to achieve similar functionality to Jekyll

Homepage: http://jekyllbootstrap.com/

86 questions
1
vote
2 answers

jekyll site folder hierarchy list of subfolders only

I have my Jekyll folder structure as _includes _layouts _post myFolder subMyFolder - readme.md subMyFolder2 - README.md subMyFolder/subSub - readme.md - something.html index.html I wish to list all subMyFolders (just first…
Hus
  • 51
  • 4
1
vote
1 answer

Localhost on Jekyll does not render css: it only renders online

So far I have been building my website on a localhost. At some point I had to build an extra page. But then I noticed, while designing on my local host, that the css was not being renderd to that new page (except for the index.html). So I had to…
1
vote
1 answer

How do I change the home page of my Jekyll / Github Pages?

I'm self-taught/totally new to Jekyll and Github Pages and am currently using the Kiko theme at aweekj.github.io/Kiko-plus/. I'm having some real difficulty changing up the default configuration. As you can see, the current home page shows the home…
1
vote
1 answer

No directory for github.io problems with jekyll

I am creating my github.io I had a lot of problems, at first, but eventually was able to install rbenv and jekyll using this: gem install jekyll --user-install Now I tried to run cd abrhor.github.com and cd abrhor.github.io but the return…
1
vote
1 answer

Jekyll Styles not rendering either on localhost:4000 or my Github, anyone to advise?

I'm using trying Jekyll Bootstrap for my blog. I've been coding with Ruby and RoR for a while. I managed to host my app on Github Pages (https://mukunzichild.github.io). However as you can see, CSS styles (Bootstrap 3) are not rendering. I've…
1
vote
1 answer

Jekyll page isn't updating

I've recently converted my static Nanoc site to Jekyll, and it's very nearly done. However, I went to add a new page recently (by adding a folder called 'menu', adding an index.html in this folder, and creating a root md file with the relevant YAML…
TechnicalTophat
  • 2,118
  • 1
  • 12
  • 33
1
vote
0 answers

Can I use autolink on kramdown with GitHub Pages?

GitHub Pages will support kramdown only after May 1 [1]. I want to use autolink. Is there any solution w/o upload generated html files? [1] https://github.com/blog/2100-github-pages-now-faster-and-simpler-with-jekyll-3-0
shuggie
  • 81
  • 5
1
vote
2 answers

Jekyll Bootstrap with Rouge Highlighting not working on Windows

I have just begun working with Jekyll and it seems like a really neat tool, however I cannot make highlighting to work. I would like to use 'rouge' highlighter for that purpose to use the same tool that will be later used by github pages - but when…
actionjezus6
  • 47
  • 1
  • 5
1
vote
4 answers

jekyll post loop not working on home page. Showing code as it is

I want to show latest posts in my bolg.html page. So i used Liquid syntax But when i used the liquid shown below and run locally, the page shows the code as it is and it doesn't fetch posts from my _posts folder. The liquid syntax is given…
hxri
  • 123
  • 10
1
vote
1 answer

In Jekyll, How can I judge whether a post used excerpt_separator or not

In my index page, I want to show this: If a post is short, I will not set the excerpt_separator to make it show the full content, it will display as the same as the single post page. if a post is long, I will set excerpt_separator in the article, I…
1
vote
1 answer

Uninstall a Jekyll-Bootstrap theme

I installed several Jekyll-Bootstrap themes using rake as described here. rake theme:install git="https://github.com/jekyllbootstrap/theme-the-program.git" How do I uninstall the themes I don't want? Do I need to manually delete all the associated…
Molly
  • 12,100
  • 4
  • 39
  • 43
1
vote
1 answer

Add a logo in front of the brand name using bootstrap 3

I started with the following code, that should generate the navigation bar of my site using Jekyll (and bootstrap):
1
vote
1 answer

How to create a navigation link to another website in Jekyll?

I am creating a static website in Jekyll. I haven't figured out how to make a link in the header that will link to a another website like Google.com. I want to this to link back to my main website xociety.co. I looked in the config file and the docs…
Sourumeiji
  • 91
  • 4
  • 12
1
vote
2 answers

Why "git push origin master" doesn't work?

I follow steps in http://jekyllbootstrap.com/usage/jekyll-quick-start.html to install Jekyll-Bootstrap. I can run http://localhost:4000 in local and I have set ssh, but git push origin master doesn't work. --- This is the error interface --- $…
alice
  • 23
  • 1
  • 3
1
vote
1 answer

Jekyll automatically processing rows

I want to filter out from site.pages all pages with a given YAML frontmatter type 'project'. To do this I've done this: {% sorted_for page in site.pages sort_by:title %} {% if page.type == 'project' %} do something {% endif…
jvc26
  • 5,805
  • 4
  • 36
  • 70