Private Section Guide
This folder contains private pages that are not linked in the main navigation menu.
Structure
_pages/
private/
├── notes.md → /private/notes/
├── drafts.md → /private/drafts/
├── thoughts.md → /private/thoughts/
└── README.md → /private/readme/
How to Add New Pages
- Create a new
.mdfile in the_pages/private/directory - Use this frontmatter template:
---
layout: default
permalink: /private/your-page-name/
title: Your Page Title
nav: false
---
- Add your content below the frontmatter
- Update the main
private.mdfile to include a link to your new page
Accessing Pages
All pages in this section are accessible via:
https://chanontonmai.github.io/private/[page-name]/
Important Notes
- All pages have
nav: falseto keep them out of the main navigation - Pages are still publicly accessible if someone knows the URL
- For true privacy, consider using GitHub’s private repository features or password protection
This guide is not linked in the main navigation menu.