thesandwi.ch/src/components/tab/button.html
Isaac Mills f84b0d8c0d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Replace namespaces with subfolders
2025-07-13 07:19:11 -06:00

10 lines
No EOL
289 B
HTML

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