I'm trying to build a site with jekyll. I managed to make math work and upload some files. Now the overall distribution of content is not optimal.
- I get a link to "HEAD" that lists a series of updates of Jekyll. I would like to get rid of that.
- The main url redirects to some blog entries while you have to click on "About" in order to go to some general information about me. I would like to do it in the opposite way, i.e. having the about section shown in the main url of the page https://rjraya.github.io/ and the blog in some derived url like https://rjraya.github.io/blog
Here are the sources of the page. How can I do this simple changes? I understand that I'm using the Minima template.
Re: HEAD
I think the "HEAD" is coming from the
History.markdownfile. It is strange that the "HEAD" does not show up in a localjekyll servedevelopment environment. I suspect the code below is picking upHistory.markdowninjekyll, along withabout.mdwhen renderingheader.html.https://github.com/rjraya/rjraya.github.io/blob/ddc6a2f5c5804961da6ac79472b7f77052bef267/_includes/header.html#L20-L27
RE: Page Title URL
Computational reflectionsChange the
hreffrom/to/blogin this line https://github.com/rjraya/rjraya.github.io/blob/ddc6a2f5c5804961da6ac79472b7f77052bef267/_includes/header.html#L7RE: About URL
Remove the
permalink : /about/from theabout.mdpage. Theabout.mdwill be come the homepage (e.g./) in the next step. https://github.com/rjraya/rjraya.github.io/blob/gh-pages/about.mdRE: Show
about.mdinformation on homepagerjraya.github.ioand show_postsmarkdown files underrjraya.github.io/blogLet
jekylluse the default behavior of assigning permalinks based on the markdown filename.Rename
index.mdtoblog.md. This will move the list of_postsfiles from/to/blog.Rename
about.mdtoindex.md. This will move the content ofabout.mdfrom/aboutto/.