27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
<div id="container">
|
|
{{- partial "header.html" . -}}
|
|
<div id="wrapper">
|
|
{{- partial "nav.html" . -}}
|
|
<div id="content">
|
|
{{- block "main" . }}{{- end }}
|
|
</div>
|
|
<div id="player">
|
|
<div id="p1"></div>
|
|
<iframe id="web-player" src="https://azuracast.southwestradio.ru/public/southwest_radio/embed?theme=dark" frameborder="0" allowtransparency="true" style="width: 100%; height: 130px; border: 0;"></iframe>
|
|
<script>
|
|
var iframe = document.getElementById('web-player');
|
|
iframe.srcdoc = '<p style="font: 14px/1.5 monospace; color:white;">Loading...</p>';
|
|
iframe.addEventListener('load', () => iframe.removeAttribute('srcdoc'));
|
|
</script>
|
|
</div>
|
|
</div>
|
|
{{- partial "footer.html" . -}}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|