Adds a solid start Foundation with a GlobalList.razor and OnStartUp.cs

This commit is contained in:
2025-10-27 02:01:55 +01:00
parent d78958f7c6
commit 70587b2af6
32 changed files with 627 additions and 286 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -1,5 +1,7 @@
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background: #2d2d2d;
color: white
}
a, .btn-link {

View File

@@ -0,0 +1,8 @@
window.initializeBootstrapCollapse = () => {
var collapseElementList = [].slice.call(document.querySelectorAll('[data-bs-toggle="collapse"]'))
var collapseList = collapseElementList.map(function (collapseEl) {
return new bootstrap.Collapse(document.querySelector(collapseEl.dataset.bsTarget), {
toggle: false
})
})
};