I would like to remove the date from a post without having to manually delete from the html from the public folder after running blogdown::build_site().
I have a post called Gallery which has the following yaml header in the Rmarkdown file at the top:
---
title: Gallery
date: null
output:
blogdown::html_page:
date: null
---
This is how it is rendered in the public/gallery/index.html file:
<div class="item">
<h4><a href="/gallery/">Gallery</a></h4>
<h5>January 1, 0001</h5>
</div>
Anyway to remove/hide it without doing it manually?
I'm using the minimal theme https://github.com/calintat/minimal/