Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide a page in Jekyll website served by GitHub

Tags:

jekyll

How do I hide a page in Jekyll? I have a Contact Us page (as a Google Docs form), and there is a response page. When created, it shows up in the navigation as a child of the Contact Us page, but I don't want it to show up at all.

I currently have this set up in the front matter like this:

---
layout: page
title: Thanks
permalink: /contact/thanks/
---
like image 814
mbprouser Avatar asked Sep 11 '14 13:09

mbprouser


1 Answers

If you do not put any title in the page, it does not show up in the nav bar. Something like

---
layout: page
permalink: /contact/thanks/
---
like image 71
Fabien Avatar answered Sep 19 '22 15:09

Fabien