Adding Jekyll theme to GitHub Pages landing page (readme.MD not updating)

  Kiến thức lập trình

Description:

I’m trying to set up a landing page for my GitHub repository using Jekyll. I want to use the “architect” theme, so I’ve created a _config.yml file in the root directory of my repository and added the following line:

theme: jekyll-theme-architect

I’ve also tried specifying the theme as theme: architect, but it doesn’t seem to have any effect.

My directory structure looks like this:

_root_
│   _config.yml
│   readme.MD

Despite adding the theme to _config.yml, my readme.MD file, which serves as my landing page, does not reflect the theme changes. The readme remains unchanged regardless of what I specify in _config.yml.

Additional Context:

  • I’m using GitHub Pages to host my repository’s landing page.
  • I’ve tried different variations of specifying the theme in _config.yml, but none seem to work.
  • I’ve ensured that my _config.yml file does not contain any syntax errors.
  • I’ve verified that my internet connection is working fine.
  • I’ve checked for any console or terminal output, but I’m not getting any error messages related to the theme.

Any insights or suggestions on how to get the theme applied to my GitHub Pages landing page would be greatly appreciated. Thank you!

LEAVE A COMMENT