36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<div id="voxppl">
|
|
<a
|
|
href="{{ .Site.Params.survey }}"
|
|
class="d-flex p-3 text-light row"
|
|
data-umami-event="survey"
|
|
target="_blank"
|
|
rel="noopener"
|
|
>
|
|
<h1 class="col-auto align-self-center m-0 p-0">
|
|
<div
|
|
class="circle-head"
|
|
style="background-color: #430c59; font-size: 1.1em"
|
|
>
|
|
<i class="bi bi-megaphone-fill"></i>
|
|
</div>
|
|
</h1>
|
|
<div class="col align-self-center font-weigth-bolder">
|
|
<button
|
|
type="button"
|
|
class="btn-close btn-close-white float-end"
|
|
aria-label="Close"
|
|
onclick="
|
|
document.getElementById('voxppl').style.display = 'none';
|
|
return false;
|
|
"
|
|
></button>
|
|
<strong>{{ i18n "survey-title" | markdownify }}</strong><br />
|
|
{{ i18n "survey-text" | markdownify }}
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<script>
|
|
setTimeout(function () {
|
|
document.getElementById("voxppl").style.display = "block";
|
|
}, 4500);
|
|
</script>
|