flowchart LR
A{Create a new folder under your listing folder} --> B(Create a new blog post with the title `index.qmd` in the folder)
A --> C(Optionally, create a `_metadata.yml` file that creates shared metadata for all documents in the folder)
New post workflow
You can create a new folder and index.qmd file using RStudio:
# options specified here will apply to all posts in this folder# freeze computational output# (see https://quarto.org/docs/projects/code-execution.html#freeze)freeze:true# Enable banner style title blockstitle-block-banner:true
freeze
freeze: true: Re-render during project render only when explicitly re-rendered.
freeze: auto: Re-render only when source changes.
title-block-banner: creates a banner style title block.