Jacob Schmidt d178e39164 Refactor client UI stores and normalize docs formatting
- Rework org and store UI state modules (rename/move store/getter files, add runtime and bridge wiring)
- Update store UI components and page structure (navbar/cart split, new StoreView flow)
- Apply broad markdown/YAML/HTML/CSS/JS formatting cleanup across docs, templates, and workflows
2026-03-10 19:13:30 -05:00

46 lines
1.7 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FDIC - Global Financial Network</title>
<!-- <link rel="stylesheet" href="bank.css"> -->
<!--
Dynamic Resource Loading
The following script loads CSS and JavaScript files dynamically using the A3API
This approach is used instead of static HTML imports to work with Arma 3's file system
-->
<script>
Promise.all([
A3API.RequestFile(
"forge\\forge_client\\addons\\bank\\ui\\_site\\bank.css",
),
A3API.RequestFile(
"forge\\forge_client\\addons\\bank\\ui\\_site\\store.js",
),
A3API.RequestFile(
"forge\\forge_client\\addons\\bank\\ui\\_site\\bank.js",
),
]).then(([css, storeJs, bankJs]) => {
const style = document.createElement("style");
style.textContent = css;
document.head.appendChild(style);
const storeScript = document.createElement("script");
storeScript.text = storeJs;
document.head.appendChild(storeScript);
const bankScript = document.createElement("script");
bankScript.text = bankJs;
document.head.appendChild(bankScript);
});
</script>
</head>
<body>
<div id="app"></div>
<!-- <script src="store.js"></script> -->
<!-- <script src="bank.js"></script> -->
</body>
</html>