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>
|
|
|
|
function toggleDescription(id){
|
|
|
|
document.querySelector(id).classList.toggle("collapsed");
|
|
|
|
}
|
|
|
|
function loadPlayer(id, embed_path){
|
|
|
|
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 06:17:02 +00:00
|
|
|
document.querySelector('[aria-label="Previous"]').parentElement.classList.add('previous-page-link')
|
2022-04-13 07:21:20 +00:00
|
|
|
|
|
|
|
// for toggling submenus in mobile navigation drawer
|
|
|
|
let submenuLinks = document.querySelectorAll('.drawer .has-submenu');
|
|
|
|
[...submenuLinks].forEach(function(submenuLink) {
|
|
|
|
submenuLink.addEventListener('click', () => {
|
|
|
|
submenuLink.querySelector('.submenu').classList.toggle('opened')
|
|
|
|
})
|
|
|
|
})
|
2021-12-15 10:29:58 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|