Feeds reference
Overview
A feed is a collection of pages. HyperTexting feeds are generated in Atom format by default.
Example
Feeds are configured using the page.feed property.
1---
2created_at: 2025-06-02T12:00:00-07:00
3title: Blog
4description: Stay up-to-date with all the latest website news
5feed:
6 title: Blog
7 tags:
8 - blog
9 - news
10---
This example shows a feed that will include all pages with the blog or news tag.
Properties
feed.title- The feed title.
Defaults to the value of the
site.titleproperty. feed.description- The feed description.
Defaults to the value of the
site.descriptionproperty. feed.author- The feed author.
Defaults to the value of the
site.authorproperty. feed.tags- Tag-based feed filters.
An array of strings.
feed.paths- Path-based feed filters.
An array of strings. Supports regular expressions.
feed.pages- A computed property containing the feeds pages.
The
feed.pagesproperty is an array of page objects (i.e. page template data).