Jekyll themes are the native way to use templates and styles to customize a Jekyll site presentation.
Questions tagged [jekyll-theme]
174 questions
0
votes
1 answer
Why does running the Jekyll theme so-simple look nothing like the theme examples (e.g. missing home buttons and logo)?
I am using the so-simple theme by Michael Rose, which I created by adding this to my Jekyll site's Gemfile:
gem "jekyll-theme-so-simple"
And this to my Jekyll site's config.yml file:
theme: jekyll-theme-so-simple
I then ran Bundler to install the…

jrap
- 1
0
votes
0 answers
Jekyll served page loses styles after modifications
I have a static page in development with Jekyll, which runs okay after bundle exec jekyll serve although with the following warning:
Conflict: The following destination is shared by multiple files.
The written file may end up…

Bernardo
- 5
- 6
0
votes
0 answers
Jekyll Serve argument error "Option name hard_wrap is already used"
When I try and run bundle exec jekyll serve, I get the error:
Conversion error: Jekyll::Converters::Markdown encountered an error while converting. Option name hard_wrap is already…

adamwstl
- 338
- 3
- 12
0
votes
0 answers
When I try to sort post there an Expected end_of_string but found pipe error
I'd like to sort the post in the reverse sequence, but there was an error.
I had tried to remove | , however, it not work well.
callback([
{% for post in site.posts reversed | sort: title %}
{
"text": "{{post.title | replace:'"','\"'}}",
…

Olsen
- 1
- 1
0
votes
1 answer
Github Jekyll page behaves not properly
I am trying to build Github Jekyll pages. Everything went fine and it gives the expected pages locally but the format of the page is really bad when it is in the Github page. On top of that any links on the page go to 404. I uploaded the basic…

vinu
- 457
- 4
- 11
0
votes
2 answers
How to fix Jekyll Baseurl problems
I'm making a theme for Jekyll, and I've hit a problem where the site only serves to localhost:4000, and when I add a baseurl, it ignores it, although the command line output says it is serving it to localhost:4000/baseurl/. The theme is on GitHub…

edapm
- 45
- 1
- 9
0
votes
3 answers
How to change the format of the date that appears on website via CSS?
I'm currently hosting my own webpage using GitHub Pages and Jekyll themes. The repository is here.
The current date format for my posts look like this:
and I want to change the date format to something like Sep. 12, 2020. However, I'm not sure how…

Sean
- 2,890
- 8
- 36
- 78
0
votes
1 answer
Installing Swiss remote theme on Jekyll Github pages
I'm trying to use the Jekyll theme "Swiss" on my GitHub pages. Swiss (jekyll-swiss) is listed as an existing dependency at https://pages.github.com/versions/, and I think that even if it weren't I'd be allowed to use it with the jekyll-remote-theme…

relizt
- 375
- 2
- 11
0
votes
0 answers
My github pages site is not applying the bootstrap jekyll theme
My github pages site is not applying the boostrap jekyll theme, instead it looks like basic html.
the site is published here: https://toneman1984.github.io/HeatherBlogV2/
the repository is here: https://github.com/toneman1984/HeatherBlogV2
I feel…

Anthony Stokes
- 25
- 1
- 9
0
votes
0 answers
Failed to generate portfolio gallery for Jekyll website
I am facing troubles to auto-generate Jekyll gallery for my portfolio.html file. I have stored portfolio landing pages in _clients folder on site root. The images for these landing pages are stored in {{site.baseurl}}/images/clients folder.
Here is…

Rakshit soral
- 21
- 2
0
votes
2 answers
Remove elements on Jekyll page
I'm a beginner who is trying to set up a site using Jekyll and I'm currently using a theme that was forked from GitHub.
I like the theme but would like to make minor adjustments to the layout such as the About page. I have no interest in the…

muthusalami
- 1
- 1
0
votes
1 answer
main.css getting indexed when github pages site gets built with jekyll
I am trying to setup my site (https://ashishrao7.github.io/ashish-rao/) using github pages and so far the experience has been good except for one small thing. An additional tile appears on the home page and the source of the problem is that the css…

Ashish Rao M
- 123
- 11
0
votes
1 answer
Get the read time for a specific post in Jekyll Pages from home page/ any other page
I am new to liquid and Jekyll, using the below code to calculate the post read time on the post page. But how should I calculate the reading time on the home page or any other page to display it below a post title?
When I use the same code on the…

sudoCoder
- 115
- 2
- 13
0
votes
1 answer
How to apply syntax highlighting for git-bash code in markdown(using jekyll theme) files?
I want to apply syntax highlighting to git bash code like this:
Please click this image link
I'm using this following code:
```gitㅤ
diff --git a/fourth.py b/fourth.py
index 13cc618..4c8cfb6 100644
--- a/fourth.py
+++…

Iwon J
- 1
- 3
0
votes
1 answer
Pass site collections from page to layout jekyll
I'm trying to pass one site collection to my page's layout, in order to be able to make my nav menu according to the sections I pass.
In my _config.yml
collections:
tt:
output: true
In my index.md page:
---
layout: mylayout
title: My Great…

Benobab
- 428
- 1
- 6
- 25