mirror of
https://github.com/dataforcanada/d4c-datapkg-statistical.git
synced 2026-06-13 14:10:55 +02:00
30 lines
668 B
HTML
30 lines
668 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Statistics Canada Tables Stats</title>
|
|
<link rel="stylesheet" href="./src/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="grid-container" class="grid-container"></div>
|
|
<script type="module">
|
|
async function init() {
|
|
try {
|
|
} catch (error) {
|
|
console.error('Failed to map app:', error);
|
|
}
|
|
}
|
|
|
|
// Initialize when DOM is loaded
|
|
if (document.readyState === 'loading') {
|
|
document.addEventListener('DOMContentLoaded', init);
|
|
} else {
|
|
init();
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html> |