website/layouts/partials/tail.html
2020-09-29 20:44:02 -04:00

11 lines
373 B
HTML

<script type="text/javascript">
<!--
function toggle(id) {
var e = document.getElementById(id);
e.style.display == 'block' ? e.style.display = 'none' : e.style.display = 'block';
}
//-->
</script>
{{ cond (eq .Page.Kind "page") (safeHTML (printf "<script src='%s/js/single.js'></script>" .Site.BaseURL)) ""}}
</body>
</html>