You can control where galleries appear using YAML frontmatter in the GitHub issue body.
hidden: true
#Completely hides the gallery from everywhere - it won't appear on the homepage or galleries page.
The gallery page itself will still be accessible if you have the direct URL.
hideFromHomepage: true
#Hides the gallery from the homepage timeline only. It will still appear on the galleries page.
private: true
#Currently doesn't do anything, but reserved for future access control features.
---
title: My Private Gallery
description: This is a test gallery
tags: ["test", "private"]
imageCount: 3
hideFromHomepage: true
---
This gallery won't appear on the homepage!
You can combine multiple visibility options:
---
title: Super Secret Gallery
hidden: true
private: true
---
This gallery is completely hidden from public view.