Questions tagged [jekyll-paginator]

47 questions
28
votes
7 answers

don't have jekyll-paginate or one of its dependencies installed

I have installed this jekyll theme. But faced with one issue. If I do: bundle exec jekyll serve All work fine (_site folder contains necessary files and server is running), but if I use the following command: jekyll build -d…
ztsv
  • 880
  • 2
  • 12
  • 27
16
votes
3 answers

Github pages: Why do I need a gh-pages

I have deployed a personal blog using Github pages and I see that some tutorials tell you to create a gh-pages branch. I did that, however, my changes to the website are visible only if I make changes to my master. So, I'm confused as to why I need…
user1142130
  • 1,617
  • 3
  • 20
  • 34
9
votes
2 answers

How to use Jekyll-paginate without index.html?

I'm trying to build my blog on Github pages and I have to use Jekyll-paginate for obvious reasons. The problem is, I don't use the index.html page for anything other than a welcome page. I have a separate page called index.html in a folder called…
8
votes
3 answers

How to open URLs in new tab in config.yml of Jekyll / Github pages site?

I'm self-taught/totally new to Jekyll and Github Pages and was wondering how to go about opening a URL in a new tab with markdown in the config.yml page. This is the website theme I'm using. I want the last 'github' link to open in a new tab,…
8
votes
1 answer

Jekyll Pagination for multiple pages

So right now I have the following in my config.yml: gems: [jekyll-paginate] paginate: 3 paginate_path: "page:num" So in my index.html page I have the following: {% for post in paginator.posts %} Stuff {% endfor %} I am having trouble figuring out…
bryan
  • 8,879
  • 18
  • 83
  • 166
6
votes
1 answer

How to organize multiple outputs inside a single Jekyll project?

I use Jekyll to create documentation for software products. I have 30 + different products that have a common LIQUID template but different content. Every single product documentation has its own table of content. For one project, everything is OK.…
4
votes
2 answers

Posts not rendering on home page with Jekyll

I would like to help to understand why my posts do not appear on my home page from a Jekyll blog. It does not work properly local and on GitHub pages. I have some test posts on _posts folder (i.e. 2017-11-22-a-post-about-my-research.markdown and…
4
votes
2 answers

Jekyll Serve not working

I have downloaded zip of this github repo - https://github.com/mmistakes/minimal-mistakes I have installed bundler and I did bundle install , it worked perfectly. Now when I try to run jekyll serve -w, WARN: Unresolved specs during…
Riken Shah
  • 3,022
  • 5
  • 29
  • 56
3
votes
0 answers

Jekyll Pagination Path Doesn't Include Page Number

I am attempting to create pagination in Jekyll under the path '/notes/'. In my _config.yml, I have: paginate: 2 paginate_path: "/notes/:num/" In my /notes/index.html, I have:
2
votes
1 answer

Jekyll - If there is more then 1 post.tag for a blog post then display a message otherwise display the tag name

In Jekyll which uses the Liquid template language, I am on my blog page and I am displaying the latest 6 blog posts. For each post, I show the post date, name, excerpt, and the post url in a link. I also want to be able to show the first tag of this…
SmuJ
  • 23
  • 2
2
votes
1 answer

How to paginate Jekyll's data items using Liquid

Hi I'm trying to access elements from the previous and next arrays. To be exact I want to access the previous and next url of pages. This is what I have done so far.Thanks! {% assign page_venue = site.data.venues-array | where: "venueID", …
Charlie805
  • 169
  • 1
  • 11
2
votes
0 answers

Jekyll commands doesn't work in Html documents

I'm a beginner and I'm trying to use Jekyll. I watch some tutorials, I did all steps, I installed and created the project but when I try to use the jekyll, it's doesn't work. I try to call the layout from the folder "_layouts" but when I open my…
2
votes
2 answers

jekyll serve not working without bundle exec

I have this jekyll project https://github.com/mmistakes/minimal-mistakes If I run jekyll serve this error is displayed. WARN: Unresolved specs during Gem::Specification.reset: listen (< 3.1, ~> 3.0) WARN: Clearing out unresolved specs.…
Riken Shah
  • 3,022
  • 5
  • 29
  • 56
2
votes
1 answer

Jekyll not showing page1 in index.html

Pagination works locally when i jekyll serve such that I get index.html with my first page of posts, but when i push and travis builds and then deploys the site, the home page lacks the first 10 posts. If I navigate to /page2 the 11-20 posts are…
John Papa
  • 21,880
  • 4
  • 61
  • 60
1
vote
1 answer

How to paginate my jekyll site using Jekyll-Paginate-v2

Here is the source code of the website with its index.md and config.yml. The problem The number of tools (.md files) in _wadcoms directory keeps increasing over time, so I want the main page to be paginated in order to better navigate among plenty…
Alphatrion
  • 111
  • 3
1
2 3 4