Pierre-Olivier Mercier
b06089c96e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
22 lines
871 B
HTML
22 lines
871 B
HTML
<div id="voxppl">
|
|
<a href="{{ .Site.Params.survey }}" class="d-flex p-3 text-light row" data-umami-event="survey" target="_blank">
|
|
<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="close float-right" aria-label="Close" onclick="document.getElementById('voxppl').style.display = 'none'; return false">
|
|
<span aria-hidden="true">×</span>
|
|
</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>
|