Good afternoon, please tell me, I folded the page and uploaded it to GitHub Pages. On the local server, everything looks good, but on a githaba, everything flies incomprehensibly how. Tell me how to solve the problem?

Link to a page on GitHub Pages

  • Check if everything is connected. I mean frameworks if such are available, etc. jQuery judging by the working slider is connected and working. - LFC
  • one
    open the console, half of the files are not connected there, `_main.css` should be replaced with just main.css as well as all other files, check paths, file names - HamSter
  • Do you need all the libraries in the /libs folder? This amount will only slow down the work. There are many duplicate functions. Reconsider, it may turn out to be optimized somehow, to remove something altogether. But this is just my opinion. You have your own idea. Just pay attention to it. - LFC
  • Thank you very much !!! The problem was solved, thanks to you) - Kr1on1x

1 answer 1

By default, GitHub Pages does not handle files that begin with an underscore. The documentation suggests three solutions to this problem:

  • do not use files starting with underscore
  • add the .nojekyll file to the root folder of the site
  • use the include directive in the _config.yml file _config.yml that Jekyll does not ignore these files.