thesandwi.ch/src/components/tab-button.html
Isaac Mills 046274bda8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Make links accessible
2025-07-12 19:08:20 -06:00

10 lines
No EOL
278 B
HTML

<script props>
module.exports = {
page: props.page,
aria_selected: Boolean(props.selected)
}
</script>
<button hx-get="/partials/{{page}}" hx-push-url="/{{page}}" role="tab" aria-selected="{{aria_selected}}"
aria-controls="tab-content">
<yield></yield>
</button>