thesandwi.ch/src/components/section-head.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

14 lines
No EOL
199 B
HTML

<script props>
module.exports = {
header: props.header || ''
}
</script>
<div class="section-header">
<div>
<h1>{{header}}</h1>
</div>
<div>
<yield></yield>
</div>
</div>
<hr>