2026-02-06 16:10:09 +00:00
|
|
|
<!doctype html>
|
2025-11-03 12:38:47 +00:00
|
|
|
<html lang="en">
|
2026-02-06 16:10:09 +00:00
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title>{{ template "title" . }} - Report Mosquitoes Online</title>
|
|
|
|
|
<!-- Bootstrap & Custom CSS -->
|
|
|
|
|
<link href="/static/css/bootstrap.css" rel="stylesheet" />
|
|
|
|
|
<!-- Bootstrap Icons -->
|
2026-02-17 22:27:51 +00:00
|
|
|
<link rel="stylesheet" href="/static/vendor/css/bootstrap-icons.min.css" />
|
2026-02-06 16:10:09 +00:00
|
|
|
<!-- favicon -->
|
|
|
|
|
<link rel="icon" href="/static/favicon-rmo.ico" type="image/x-icon" />
|
|
|
|
|
{{ block "extraheader" . }}{{ end }}
|
|
|
|
|
<script>
|
2026-02-06 16:55:29 +00:00
|
|
|
var tooltipByElementId = {};
|
2026-02-06 16:10:09 +00:00
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
|
|
|
var popoverTriggerList = [].slice.call(
|
|
|
|
|
document.querySelectorAll('[data-bs-toggle="popover"]'),
|
|
|
|
|
);
|
|
|
|
|
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
|
|
|
|
|
return new bootstrap.Popover(popoverTriggerEl);
|
|
|
|
|
});
|
|
|
|
|
console.log("Initialized ", popoverTriggerList.length, " popovers");
|
2026-02-06 15:39:49 +00:00
|
|
|
|
2026-02-06 16:10:09 +00:00
|
|
|
var tooltipTriggerList = [].slice.call(
|
|
|
|
|
document.querySelectorAll('[data-bs-toggle="tooltip"]'),
|
|
|
|
|
);
|
|
|
|
|
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
|
2026-02-06 16:55:29 +00:00
|
|
|
let t = new bootstrap.Tooltip(tooltipTriggerEl);
|
|
|
|
|
if (tooltipTriggerEl.id != "") {
|
|
|
|
|
tooltipByElementId[tooltipTriggerEl.id] = t;
|
|
|
|
|
console.log("added tooltip to", tooltipTriggerEl.id);
|
|
|
|
|
}
|
|
|
|
|
return t;
|
2026-02-06 16:10:09 +00:00
|
|
|
});
|
|
|
|
|
console.log("Initialized ", tooltipTriggerList.length, " tooltips");
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{{ template "content" . }}
|
2026-02-07 05:51:21 +00:00
|
|
|
{{ template "rmo/component/footer.html" . }}
|
2026-02-06 16:10:09 +00:00
|
|
|
<script src="/static/vendor/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
</body>
|
2025-11-03 12:38:47 +00:00
|
|
|
</html>
|