The scan: prefix in tt_page_var scans a directory for .md files
and returns an array of page objects. Use it to build indexes, listings,
and navigation from page metadata.
---
tt_page_var:
pages: scan:/blog/*.md sort=date desc
---
/ (docroot-relative).md*.md, post-*.md)** for recursive scanning across all subdirectories:
scan:/**/*.md scans the entire docrootEach scanned page returns these fields:
url - docroot-relative URL (.md stripped, /index normalised to /)title - from front matter title: or empty stringsubtitle - from front matter subtitle: or empty stringdate - from front matter date: or file mtime (YYYY-MM-DD format)tags - array of tags from front matter (YAML list, comma-separated,
or single value)excerpt - first 500 characters of the raw page body (after front
matter), used for search snippetssearchable - 1 or 0, from front matter search: or the site-wide
search_default settingpath - full filesystem path to the .md fileAppend sort=FIELD DIRECTION to the pattern:
scan:/blog/*.md sort=date desc
scan:/docs/*.md sort=title asc
scan:/pages/*.md sort=filename asc
Supported fields: date, title, filename. Default: filename asc.
Direction is optional and defaults to asc.
---
title: Blog
tt_page_var:
posts: scan:/blog/*.md sort=date desc
---
[% FOREACH post IN posts %]
### [% post.title %]
*[% post.date %]* - [% post.subtitle %]
Read more
[% END %]
lazysite.conf for site-wide variables[% page.tags.join(', ') %]