How to get page link on time of my jekyll site - github

If you goto my jekyll site at the following url
http://xxxx.com
you will see on the time categories, pages, tages, archive and I would like to find a what to put a link right to my resume page on top too.
I am using github, jekyll and the hoolign theme. please help me out

Jekyll Bootstrap uses site.pages and loops through them to create the Top Nav.
So to add your Resume to that list, you need to do this:
Assuming your Resume is here: Jekyll Bootstrap Root Directory -> /resume/index.md.
At the top of /resume/index.md add this single line group: navigation to your YAML Front Matter after your title:
---
layout: page
title: Resume
group: navigation
---
See this file in JB, which explains:
https://github.com/plusjade/jekyll-bootstrap/blob/master/_includes/JB/pages_list
EDIT: Oh, I see you are using /resume.md and /resume/index.md for the same content. So add the group: navigation line to the one which you want in the main nav, but not both.

Related

How to hide Intro/Index Page in TOC of Jupyterbook?

The Documentation of Jupyter Book is not showing the Intro/Index Page in the TOC on the left sidebar. That's what I want for my book.
The Documentation does not explain how to do this. Does anyone know?
Jupyterbook: Structure the Table of Content
In the _config.yml file, you should add the following entry:
html:
home_page_in_navbar: false # Whether to include your home page in the left Navigation Bar
You can see the full configuration file and its defaults in the JupyterBook documentation:
https://jupyterbook.org/en/stable/customize/config.html

Github pages - White look

Problem: When you click the link it shows only the title but nothing else
Why?
This is the link to the repository: https://github.com/H4YWYRE/UHD-Food-Market
and this is the link to the GitHub Pages: https://h4ywyre.github.io/UHD-Food-Market/
Current result:
When I click https://github.com/H4YWYRE/UHD-Food-Market, I do see the full page, not just the title.
I would still recommand to rename FMPUHD.html as index.html, to kame sure this file is considered by default as the homepage.

Set an homepage and create a link to redirect to an other project with Jekyll/Github pages

I must have missed the informations but I don't know how do two things with jekyll and Github pages...
First question:
With the minima theme, my homepage is the index.md with the layout default :
---
layout: default
title: Homepage
---
I didn't changed the default.html. The content of my index.md is well displayed as my homepage, but a new tab was created in the navigation bar with the title " Homepage "... There is a way to display my homepage without created a new tab in the navigation bar ?
Second question :
I create a file resume.md to create a new tab in the navigation bar with " resume " as title :
---
layout: default
title: Resume
---
A resume tab was created. But I would like that when I click on it, this tab redirect me to my other project Github pages which is my resume.
I don't know how to do that...
Can you help me with these to problems ?
Find the solution to my first problem :
In the _config.yml file, uncomment the #header_pages. That allow to change the order of the navigation ( an other problem that I have... ) and not display the homepage tab in the navigation bar.
Still the second problem.
Regarding question two:
You could try using Jekyll plugin jekyll-redirect-from [1] to create a page on your website to redirect to another URL [2].
Sometimes, you may want to redirect a site page to a totally different
website. This plugin also supports that with the redirect_to key:
title: My amazing post
redirect_to: http://www.github.com
[1] https://github.com/jekyll/jekyll-redirect-from
[2] https://github.com/jekyll/jekyll-redirect-from#redirect-to
I was in the same sceneraio before. Specifically, I have my personal home page setup on github. Meanwhile, I aslo have two seperate projects hosted at two differnt urls, which I want to show them as hyperlinked navigation tabs on my homepage as well.
The solution I used is to cutomize the navigation tab setion in the default.html as below :
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Projects</li>
<li>MyProject1</li>
<li>MyProject2</li>
</ul>
</nav>
you can replace the url above with your own external link.
Setting target="_blank" will open the link in a new page when you click on the hyperlinked tab (i.e. MyProject1 or MyProject2).
FYI, here is my account:https://trencyclopedia.github.io/

How to set up a TypoScript Playground in Typo 3?

How can one play around with TypoScript code shown in documentations about TypoScript?
Tested with a local Typo3 test instance, Typo3 version 9.5.5, Official Introduction Package installed.
In the backend, create a new page in the tree. Rightclick -> enable it (the red overlay should disappear). Make sure it is selected in the tree.
Click on the blue Template button on the left. Usually it will show you the blue No Template message.
Make sure on the top Info/Modify is selected from the drop down.
Click the gray + (New record) button under the drop down.
On the bottom, click Edit the whole template record.
Optionally give it a speaking template and website title, like 'Playaround' and 'Play Around'.
Optionally, under tab Options -> Clear, select Constants and Setup - this will clear everything this Template has inherited from parent templates, but will also disable the debug infos at the bottom of the frontend for this page (if you have installed the Official Introduction Package).
Under the tab General -> text entry Setup, enter the following TypoScript:
page = PAGE
page.10 = TEXT
page.10.value = Hello World
press the Save and then the View button.
A new tab opens, showing you the frontend for your page, printing the text 'Hello World'.
Now you can play around with the code examples given in eg. the TypoScript Reference.
Funnily enough, I just found out that Typoscript is by definition not a programming language, but a configuration description. That's why Typo3 is needed as a substructure for this, I think. There seem to be online demos of Typo3 on the net, but I don't know whether they are up to date and whether you can test TypoScript there. Therefore access local containers / installations as suggested. Or if the possibility exists a dev subdomain.

Automatically go into list view when going to a folder

When clicking on a folder in TYPO3 CMS backend, I get this message:
The current page is a folder. Folders usually don't contain content elements but are used for collecting other types of records.
Can I make TYPO3 go into list view automatically? I don't see no reason why it stays in page view when going to a folder.
Reversely, I'd like to go into page view when clicking on a page.
Ugh, found an issue from 2011....... https://forge.typo3.org/issues/29790 Fix, please!!
There's an extension 'autoswitchlistview' which does exactly what you're looking for:
Whenever you are in the page module and clicking on a sys folder in the page tree, you will be forwarded to list view automatically.
View Repository on GitHub