Jekyll blog post and github - jekyll

I have some problems with seeing blog posts on github.
When I clicked on the blogs site, this is what happened
Can someone help me out ? The blog works perfectly fine on local host but not on github site. I'm grateful.
This is my website : blog-kiettran.com
This is my github repo : https://github.com/khtran1994/my-jekyll-blog

Your url: config setting seems to be incorrect.
Changing it to match your CNAME should resolve this..
url: http://blog-kiettran.com
See your post here: http://blog-kiettran.com/jekyll/simple-blog.html

Related

Jekyll Minimal Theme Shows 404 On "category/***" Pages

I have a problem with “/category/***” pages in my Blog.
The /category/ and /tag/ root pages are working fine. But /category/*** sub-pages show 404 error and basically the blog generates no category page.
How do I fix this issue?
My repository link.
PS: I really checked everything I could think of.

How can I get category page hyperlinks of my Jekyll website hosted on GitHub working?

For a Jeykll website hosted on GitHub I created a custom solution (no Jeykll plugin) to display all post links of a category on a page *. I use the setup of GitHub pages for local Jekyll builds and build with bundle exec jekyll serve locally. If visit http://127.0.0.1:4000 and push one of the hyper-link buttons Embedded, Hardware or Software in the left side-bar below Pattern Categories the post links are shown like expected.
However if I visit the website hosted on GitHub I get an "404 File not found" error. From the past I can remember that this could relate to a different handling of Jekylls permalinks in local and GitHub Pages builds. But I cannot remember in detail.
It would be great if someone could help me out.
* Sitenote: Right now instead of listing only the post links for a single category the post links of all categories are listed section wise. But that does not matter w.r.t. to this question.
The problem is that the website isn't located at the root level, so you need to use in _config.yml the base url:
baseurl: /design-pattern-references
Then make use of that setting generating full paths, e.g.: in _layouts/index.html
{{ post.title }}

My Github link keeps referring to an HTML page that I've already deleted

I am extremely new to coding and still learning the ins and outs of Git and Github. I am having an issue where my Github pages opens to an .html file that I deleted rather than my index.html. I am at a blockage where I've typed my question into google in various forms and have tried to figure this issue out myself, but with my limited knowledge, I'll be honest I'm just getting confused and finding myself heading down a rabbit hole. Can anyone help me out?
This is my github repo https://github.com/khayes8/Triviagame
and this is my github pages link https://khayes8.github.io/Triviagame/Finalscore.html
In correct url of your Github Page is https://khayes8.github.io/Trivia-game/index.html
And I found a javascript in the repository which file /assets/javascript/app.js at line 69.
setTimeout(function(){
window.location.href='Finalscore.html'});
The statement redirect your page from /index.html to /Finalscore.html. Because you are already deleted Finalscore.html so you will get a 404 no found page.

Jekyll blog on github page not show my new post but It works on localhost:4000

Sorry, I am new to jekyll.
Recently I make a blog by github-page+ jekyll and use somebody`s template
this one
https://github.com/Huxpro/huxpro.github.io
and modify code to use on my blog
but the problem is that :
Jekyll blog on github page not show my new post but It works on localhost:4000
and I search the answer for some page
but I still could not find the answer....
this is my github
https://github.com/intheblackworld/intheblackworld.github.io
1. If you mean "GitHub not rendering all new posts after a specific post":
Solution is check your date format.
Check your YAML header
You may quote your YAML header:
----
date: "2016-03-16"
----
2. If you mean "GitHub not rendering my very newest post"
Solution is Make another commit and push to GitHub
I encounter this problem too.
Have no idea why but this may help.

jekyll pages work locally but not when online

I am trying to add a couple links to my jekyll page. Here is the code I added to my _data/links.yml file (Home was there previously, I added the last two):
- url: /
title: Home
- url: /about
title: About
- url: /thoughts
title: Thoughts
It works locally but not when I host my page on github pages. I know jekyll versions are different, I have 2.0.3 locally and I'm not sure what version is on github pages. But this seems like a relatively simple thing. When I click on these links I get a 404 error.
My page is here int-A.github.io and code is hosted here. Is there something that changed in version 2 of Jekyll that would allow this to work but not on an older version (which ever is on github pages)
I believe there is something wrong with permalinks and baseurl="" combination.
Your pages do render at these locations:
http://int-a.github.io/thoughts/thoughts/
http://int-a.github.io/about/about/
I believe the solution would be to set the baseurl as http://int-a.github.io and permalink to /index.html instead of /foldername/index.html