Files
personal-website/hugo/eliaskohout.de/layouts/shortcodes/grafana.html

14 lines
356 B
HTML
Raw Normal View History

<div class="grafana-embed">
<iframe
src="{{ .Get "url" }}"
width="{{ .Get "width" | default "100%" }}"
height="{{ .Get "height" | default "450" }}"
frameborder="0"
scrolling="no"
allowfullscreen
loading="lazy"
style="border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden;"
>
</iframe>
</div>