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/

89 questions
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
  • 13,240
  • 4
  • 44
  • 45
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
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
  • 6,363
  • 6
  • 46
  • 75
1
vote
1 answer

how to setup octopress if you already have one in github?

this is my blog hosted in github. http://john-qin.github.io/ now, i want to setup octopress on my ubuntu 12.04. I followed the instruction on this page. http://octopress.org/docs/deploying/github/ I got stuck after "rake setup_github_pages". this…
qinking126
  • 11,385
  • 25
  • 74
  • 124
1
vote
2 answers

Jekyll private deployment?

I have created jekyll site. Regarding the deployment I don't want to host on github pages. To host private domain I came know from documentation to copy the all files from _site folder. That's all wicked. Question: Each time I add new blog post, I…
Dayanithi Hari
  • 77
  • 1
  • 2
  • 6
1
vote
1 answer

Sticky responsive footer jekyll-bootstrap

I'm using the jekyll-bootstrap hooligan theme but I've got many problems to stick the footer in jekyll-bootstrap. Are there any way to stick the footer in this theme? http://themes.jekyllbootstrap.com/preview/hooligan/
1
vote
1 answer

Jekyll Bootstrap: Having trouble modifying the Liquid template?

I've worked with Rails before but I'm having issues working my way around configuring the layout that I`m using. I am using the Twitter theme, and under _includes/themes/_layouts/default.html, I want to be able to link to other pages under the nav…
Louis93
  • 3,843
  • 8
  • 48
  • 94
1
vote
1 answer

How to list the newest 10 posts using liquid?

I establish my Blog with the help of jekyll bootstrap and deploy it on github. Here is my question: I want to add a sidebar which lists my newest 10 posts. When I use the code below, it lists all my posts:
    {% for post in site.posts %} …
hazir
  • 55
  • 1
  • 4
1
vote
1 answer

jekyll don't set site.safe to true when production environment

I use jekyllbootstrap to generate my website. But i find the jekyll didn't set the site.safe to true. so my google analytics don't show on production environment. I test site.safe site.JB.analytics.provider and page.JB.analytics, finally find the…
Wyntau
  • 203
  • 2
  • 11
1
vote
1 answer

Can I put the auto directory in my .gitignore for my Jekyll Bootstrap blog?

So I am using Jekyll Bootstrap, which is also available on GitHub, in order to build my blog (which is currently just full of filler content for development). One thing I noticed is that when running my local development server using the command $…
Cory Gross
  • 36,833
  • 17
  • 68
  • 80
0
votes
0 answers

GitHub Pages Jekyll hosted blog doesn't pick up remote_theme

I've just installed a Jekyll blog and I've tested it locally with a remote_theme and locally, it works fine. However when it's being deployed to GH page I see that the theme is minima (the default one). In my _config.yml: remote_theme:…
noloman
  • 11,411
  • 20
  • 82
  • 129
0
votes
1 answer

Jekyll collections or category choice for catalogue website?

I'm trying to build a catalogue like a website with vintage processors in Jekyll. They are structured like so: Manufacturer/type/processor. For example: AMD / K6 / K6-166ALR I am a little puzzled on how to do this. K6-166ALR.html would be the file…
Richard Kacerek
  • 137
  • 1
  • 1
  • 7
0
votes
1 answer

How to add a button in Jekyll Blog hosted in Github?

I want to add a heart symbol button over which a stripe payment gateway would open. The blog is hosted in GitHub. How can I create such button like "Buy me a coffee" or "Red Heart" on my jekyll website?