feat: hide blog posts

This commit is contained in:
Alexander Daichendt 2022-07-26 13:15:10 +02:00
parent 94ca2a8a2a
commit c891a924cd
6 changed files with 49 additions and 6 deletions

View file

@ -1,6 +1,9 @@
export interface BlogPostFrontmatter {
date: string;
title: string;
description: string;
keywords: string[];
hidden: boolean;
}
export interface BlogPostMeta extends BlogPostFrontmatter {