thesandwi.ch/src/components/blockquote.html
Isaac Mills c8d209facd
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add tabs
2025-07-09 12:22:15 -06:00

15 lines
No EOL
262 B
HTML

<script props>
module.exports = {
cite: props.cite || ''
}
</script>
<center style="margin: 16px;">
<blockquote>
<markdown>
<yield></yield>
</markdown>
</blockquote>
<if condition="cite != ''">
<p>—{{cite}}</p>
</if>
</center>