Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/brutalist. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
13 lines
315 B
Plaintext
13 lines
315 B
Plaintext
package main
|
|
|
|
templ metaStripComponent(data MetaStripData) {
|
|
<dl class="brutalist-meta-strip" data-block="brutalist:meta_strip">
|
|
for _, item := range data.Items {
|
|
<div style="display: flex; flex-direction: column; gap: 0.25rem;">
|
|
<dt>{ item.Label }</dt>
|
|
<dd>{ item.Value }</dd>
|
|
</div>
|
|
}
|
|
</dl>
|
|
}
|