{% quote %}
Attributes
| Parameter | Type | Required | Description |
|---|---|---|---|
author | string | β | Attribution name shown below the quote |
url | string | β | Source URL β renders the author name as a hyperlink |
Valid Parent Contexts
This tag is valid inside: {% article %}
Rules
| Rule | Force | Realm | Reference | Description |
|---|---|---|---|---|
quote-anchor-auto | | | β | Each is assigned an auto-incremented anchor (, , ...) so individual quotes can be linked from the aggregate page. |
The body of \{% quote %\} is the quoted text. Full Markdown is supported (bold, italics, lists, inline code).
Rendering
Rendered by ArticleQuote.astro as a styled <blockquote>. If author is provided, an attribution line appears below the quoted text. If url is also provided, the author name becomes a hyperlink to the source.
Aggregate β Quotes page
All quotes across all articles are collected and rendered at /quotes, grouped alphabetically by author. Each entry shows the quoted content and a back-link to the source article. The aggregate page is only generated if at least one \{% quote %\} exists anywhere in the content tree.
Sidebar: A βQuotesβ link appears in the Journal section when the aggregate is non-empty.
Quote with author and source URL
{% quote author="John Gottman" url="https://www.gottman.com/blog/the-four-horsemen/" %}Criticism, contempt, defensiveness, and stonewalling are so lethal to relationshipsthat I call them the Four Horsemen of the Apocalypse.{% /quote %} Quote with author only, no link
{% quote author="Marshall Rosenberg" %}What I want in my life is compassion, a flow between myself and others based on amutual giving from the heart.{% /quote %} Anonymous quote with no attribution
{% quote %}Sometimes a quote has no known author.{% /quote %}