Various changes
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Isaac Mills 2025-07-12 21:31:22 -06:00
parent e3835f6577
commit f70df99f09
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
7 changed files with 22 additions and 21 deletions

View file

@ -1,10 +0,0 @@
<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>

View file

@ -1,22 +0,0 @@
<script props>
module.exports = {
selected: Number(props.selected || '0')
}
</script>
<nav class="tab-list" role="tablist" hx-indicator="#indicator">
<x-tab-button page="projects.html" selected="{{ selected-- == 0 }}">Our Projects</x-tab-button>
<x-tab-button page="who_we_are.html" selected="{{ selected-- == 0 }}">Who we are</x-tab-button>
<x-tab-button page="interests.html" selected="{{ selected-- == 0 }}">Our Interests</x-tab-button>
<x-tab-button page="page_four.html" selected="{{ selected-- == 0 }}">Page Four</x-tab-button>
</nav>
<hr style="margin: 0">
<div id="tab-content" role="tabpanel" class="tab-content">
<yield></yield>
</div>
<div id="footer">
<hr class="footnotes-sep">
<section class="footnotes">
<slot:footer></slot:footer>
<p>Copyright, The SANDWICH™ 2025 ©®☺ⓖⓨⓐⓣⓣ</p>
</section>
</div>