diff --git a/content/blogs.md b/content/blogs.md index 9308fcef..9644e952 100644 --- a/content/blogs.md +++ b/content/blogs.md @@ -310,7 +310,7 @@ authorImg: {{cdn:img/profile.jpg}} status: active tags: id: why-i-deleted-my-facebook -hidden: false +hidden: true title: How to Print File Trees on the Command Line subtitle: Spruce up your file system diff --git a/generator/builder.js b/generator/builder.js index 68a88983..51184303 100644 --- a/generator/builder.js +++ b/generator/builder.js @@ -1177,6 +1177,7 @@ const buildVaultRowsMobile = async (experiences, projects, blogs) => { // parse blog posts into rows for (let blog of blogs) { + if (blog.hidden === 'true') continue let r = new RowTemplate({}) let date = new Date(blog.published * 1000) r.year = date.getFullYear() @@ -1319,6 +1320,7 @@ const buildVaultRows = async (experiences, projects, blogs) => { // parse blog posts into rows for (let blog of blogs) { + if (blog.hidden === 'true') continue let r = new RowTemplate({}) let date = new Date(blog.published * 1000) r.year = date.getFullYear() diff --git a/package.json b/package.json index 9b5772eb..00f4e4f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "generator", - "version": "2.3.0", + "version": "2.3.2", "description": "Custom static site generator for willcarh.art", "main": "generator/generator.js", "repository": "git@github.com:wcarhart/willcarh.art.git", diff --git a/snippets/common/credits.html b/snippets/common/credits.html index 021ba21a..55484592 100644 --- a/snippets/common/credits.html +++ b/snippets/common/credits.html @@ -2,6 +2,6 @@ - +
©  Will Carhart
\ No newline at end of file