mirror of
https://github.com/Pagwin-Fedora/website.git
synced 2025-07-18 11:35:43 +00:00
11 lines
373 B
HTML
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>
|