You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
637 B

{{ if ne .Site.Params.hideMadeWithLine true }}
<hr style="margin-top: 20em">
<hr>
© 2023, Johannes Winter<br>
Find credits in the <a href="https://git.gugelfrei.de/websites/wntr/src/branch/main/README.md" target="_blank">gittea</a>
{{ end }}
<script>
const images = Array.from(document.querySelectorAll("img"));
images.forEach(img => {
mediumZoom(img, {
margin: 0, /* The space outside the zoomed image */
scrollOffset: 40, /* The number of pixels to scroll to close the zoom */
container: null, /* The viewport to render the zoom in */
template: null /* The template element to display on zoom */
});
});
</script>