lumbung.space/themes/lumbung-theme/layouts/_default/baseof.html

46 lines
1.6 KiB
HTML
Raw Normal View History

2021-12-15 10:29:58 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
2022-01-13 08:22:22 +00:00
2022-04-13 06:36:03 +00:00
<div class="container">
2022-01-13 08:22:22 +00:00
{{- block "main" . }}{{- end }}
2021-12-15 10:29:58 +00:00
</div>
2022-01-13 08:22:22 +00:00
2022-02-02 11:22:48 +00:00
{{- partial "news-ticker.html" . -}}
2021-12-15 10:29:58 +00:00
{{- partial "footer.html" . -}}
</body>
<script>
2022-04-13 17:54:07 +00:00
function toggleDescription(id) {
2021-12-15 10:29:58 +00:00
document.querySelector(id).classList.toggle("collapsed");
}
2022-04-13 17:54:07 +00:00
function loadPlayer(id, embed_path) {
2021-12-15 10:29:58 +00:00
media = document.querySelector('#media-'+ id)
var iframe = document.createElement('iframe');
iframe.src = embed_path + '?autoplay=1&title=0';
iframe.width = 560;
iframe.height = 315;
iframe.frameBorder = 0;
iframe.sandbox = "allow-same-origin allow-scripts allow-popups" ;
media.appendChild(iframe);
document.querySelector('#thumb-'+ id).remove();
}
2022-04-13 17:54:07 +00:00
2022-04-13 17:58:57 +00:00
// remove box around "previous" page nav link (couldn't handle this with CSS nth-child)
document.querySelector('[aria-label="Previous"]').parentElement.classList.add('previous-page-link')
// for toggling submenus in mobile navigation drawer
let submenuLinks = document.querySelectorAll('.drawer .has-submenu');
[...submenuLinks].forEach(submenuLink => {
submenuLink.addEventListener('click', function() {
submenuLink.querySelector('.submenu').classList.toggle('opened')
})
})
2021-12-15 10:29:58 +00:00
</script>
</html>