Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/editorial. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
17 lines
624 B
Plaintext
17 lines
624 B
Plaintext
package main
|
|
|
|
// pullquoteComponent renders the oxblood Playfair italic pull quote. The quote
|
|
// itself is trusted rich text supplied by the editor; we render it inline
|
|
// using templ.Raw so author-supplied emphasis is preserved. The attribution is
|
|
// rendered as a plain-text small-caps cap below.
|
|
templ pullquoteComponent(data PullquoteData) {
|
|
<aside class="editorial-column" data-block="editorial:pullquote">
|
|
<blockquote class="editorial-pullquote">
|
|
@templ.Raw(data.Quote)
|
|
if data.Attribution != "" {
|
|
<cite class="editorial-pullquote-attribution">{ data.Attribution }</cite>
|
|
}
|
|
</blockquote>
|
|
</aside>
|
|
}
|