jekyll Questions

5

what do I have to do, is there a problem with dependencies? How do I fix those? I am on catalina. I repeatedly get this error and have already looked for the directory.. doesn't exist. sudo bundle ...
Commodore asked 3/9, 2020 at 18:5

9

Solved

I'm trying to learn how to use Jekyll along with Bootstrap; while studying them, I decided that I'd like to have an image carousel on my homepage. Since I'm really lazy I don't want to hard-code ...
Mariahmariam asked 3/7, 2013 at 11:13

2

Solved

The default site setup for a new Jekyll site has a layout specified as "home" in index.md: --- # You don't need to edit this file, it's empty on purpose. # Edit theme's home layout instead if you ...
Borer asked 8/10, 2018 at 20:47

3

I have build a website for github pages with jekyll. I setted it up and everything seems to be fine, and my custom domain www.domain.tld is working. But when I enter domain.tld in the browser, it l...
Weinhardt asked 5/1, 2020 at 0:58

3

Solved

It started when I tried to add the Google Tag Manager Gem to my local installation of Jekyll. A little background here, I'm using homebrew and rbenv. My ruby version is 2.4.1 or at least I thin...
Caty asked 10/5, 2017 at 9:54

3

Solved

To be clear, assuming: {% assign my_var = "123" %} {% assign another_var = "456" %} I would like to append string to my_var to get something like 123 - 456 What I have tried so far: {% assign ...
Instalment asked 15/5, 2014 at 21:24

2

I'm working on a simple jekyll site, and am wanting to embed a video (locally-stored mp4 - not youtube/streaming service) in a markdown file. I'm just using the basic tag: <video width="600" c...
Voiceful asked 20/2, 2018 at 2:14

2

Solved

Is there a way to sort lists by two fields with Jekyll/Liquid? For example, sorting first by year and then title. I have tried: {% assign list = site.data.papers.papers | sort: 'year' | sort: 'tit...
Leigha asked 12/8, 2017 at 15:12

4

I am currently working on a jekyll based homepage and I cant get pagination working. <ul class="posts"> {% for post in paginator.posts %} <li> <span class="list_date">{{ post....
Noah asked 29/12, 2013 at 19:9

2

Solved

Next.js builds all the static assets in _next folder but Github pages does not need to serve those files. I am 404 for static assets. Example repo: https://github.com/ajaymathur/ajaymathur.github....
Hungry asked 27/4, 2020 at 1:21

3

Solved

I would like to be able to insert youtube videos in my Jekyll site hosted in Github. There is a Jekyll plugin for embedding youtube videos but it does not work in github pages. An iframe does no...
Lordling asked 10/1, 2016 at 17:23

4

Solved

I've followed this tutorial and the following ones to create a Github Pages website with Jekyll. Now I have the minima theme, but it seems to be a different version from the official repo, as the p...
Harding asked 14/2, 2020 at 17:48

6

Solved

I just started blogging using jekyll. I write my posts in markdown. Now I want to include a YouTube video in my post. How can I do this? I don't really like the pygments highlighting provided...
Endothelium asked 10/5, 2012 at 8:7

4

Solved

Okay... I have a project where I'm using Jekyll for a podcast project. And I chose to list the hosts in the shownotes by a YAML Front Matter item: hosts: - Name A - Name B - Name C Using this...
Hautemarne asked 13/6, 2015 at 22:59

4

Solved

This is just a simple problem but it's one that I can't find on Google to solve this. Basically what is happening is that I have a Jekyll website, and I'm using kramdown for the markdown compiling....
Retinue asked 2/6, 2015 at 7:51

3

Solved

I'm trying to add line numbers to fenced code blocks in markdown with Jekyll. I have tried using both kramdown and redcarpet and adding line_numbers: true to the _config.yml file (under the proper...
Antimonic asked 5/8, 2014 at 7:20

4

Solved

I've recently switched over to using Jekyll on Github Pages for my various blogs, and love that I can just push Markdown to Github and they handle the processing. I'd like to continue using it this...
Collincolline asked 20/10, 2013 at 23:13

2

Solved

My jekyll blog template have links to resources and pages like so: {{ site.url }}/my-page.html This works well in deployment, but when I run jekyll serve in development, all of the links point t...
Fern asked 9/12, 2014 at 18:28

3

This is my first question on SO, so I hope it's ok that I'm doing this. I have now had this problem twice and pulled my hair out searching for an answer. I found it the first time, and then forgot ...
Downtown asked 16/2, 2018 at 2:25

3

Solved

There's any way to check if the current page is the homepage? I want use h1 tag for the logo image only when the current page is the website base url.
Weimaraner asked 8/3, 2015 at 22:31

3

Solved

Most Liquid "filters" are actually "map"s in the functional programming sense: you take an array, you apply a function to each element and return the transformed array. I'd like instead to "filter"...
Wavy asked 27/8, 2014 at 8:31

3

I want to loop over all posts that are assigned category "foo" and category "bar" .. {% for post in site.categories.foo and in site.categories.bar %} Is this possible? In my case "foo" as a "p...
Workable asked 14/4, 2014 at 2:15

3

Not sure what to do to specifically fix this problem, googled and nothing solved my question. When I try to: bundle exec jekyll serve I get told: Could not find eventmachine-1.2.7 in any of the sou...
Zane asked 30/11, 2020 at 14:44

5

Solved

Is there any IDE for easy development of jekyll sites. which supports Jekyll site generation along with sass compilation.
Terina asked 6/1, 2015 at 9:28

4

Solved

I want to host a Jekyll blog using GitHub Pages. I have purchased a license to display a web font for up to 50.000 page views/month. I order to not violate this agreement, I need to implement...
Pontic asked 1/9, 2019 at 16:22

© 2022 - 2024 — McMap. All rights reserved.