Understanding Quarto Listing Pages
Mr.Reporter
quarto
listing pages
How to use Quarto listings to create automated blog-style pages for your website.
What are Listing Pages?
Quarto listing pages allow you to automatically generate a list of content (like blog posts or articles) from a directory. This is essential for maintaining a structured technical blog.
Core Features
- Automated Discovery: Quarto scans specified directories for
.qmdor.mdfiles. - Multiple Types:
default,grid, ortable. - Metadata Integration: Uses YAML headers for titles, dates, and descriptions.
- Filtering & Sorting: Built-in support for categories and date-based sorting.
Configuration Example
In your index.qmd within the tech/ folder:
listing:
contents: "."
sort: "date desc"
type: default
categories: trueBy following the “YYYY-MM-DD-topic” naming convention, we ensure both file-system order and chronological clarity for our technical stack documentation.