This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
landingpage/layouts/stats/baseof.html

24 lines
782 B
HTML

<!DOCTYPE html>
<html>
<head>
{{- partial "head.html" . -}}
</head>
<body class="is-preload">
<div id="page-wrapper">
{{- partial "header.html" . -}}
<script type="text/javascript">
$(document).ready(function() {
if(window.location.hash) {
$("iframe").attr("src",
"https://karte.freifunk-leipzig.de/grafana/" + window.location.hash);
}
});
</script>
<iframe src="https://karte.freifunk-leipzig.de/grafana/"
width="100%" style="display:block; height: calc(100vh - 3.25em);width: 100%;">
</iframe>
</div>
{{- partial "scripts.html" . -}}
</body>
</html>