0

I am making my Github blog with Jekyll theme(Centrarium) and I found that it works differently with my bundler. I can see my posts on the main page built with bundler but I can't see them on the real web page. Here are more descriptions.

https://syh39.github.io/test/2020/02/29/test.html

I've tried downloading the theme again but the initialized version of Centrarium also works like this(posts show on the main page with bundler, but does not show on the real web page)

What should I do to make my web page the same as it is shown on the bundler?

David Jacquel
  • 51,670
  • 6
  • 121
  • 147
syh30
  • 11

1 Answers1

1

If you compare your Gemfile to github-pages allowed gems, you can see that both jekyll-archives and jekyll-paginate-v2 are not supported.

Possible workarounds for pagination :

Possible workarounds for pagination and archives :

  • deploy your jekyll code and generated site in two separates branches and publish generated site's branch on gh-pages (see this question) ;
  • deploy your site on plaforms like netlify which allow custom plugins use.
David Jacquel
  • 51,670
  • 6
  • 121
  • 147