2020-05-24 22:42:15 +03:00
< footer class = "flex justify-between w-full text-center text-gray-500 text-xs mt-12" >
< div class = "text-xs font-mono" >
2020-10-16 17:58:16 +03:00
v{{ getVersion }} @ {{ getDbType }}
2020-05-24 22:42:15 +03:00
< / div >
< div >
2021-04-16 18:07:11 +03:00
Made with < span class = "iconify inline" data-icon = "bi:heart-fill" > < / span > by < a href = "https://muetsch.io" class = "border-b border-green-700" > Ferdinand Mütsch< / a > as < a
2020-05-24 22:42:15 +03:00
href="https://github.com/muety/wakapi" class="border-b border-green-700">open-source< / a > software
< / div >
< div >
2020-05-30 21:41:27 +03:00
< a href = "imprint" class = "border-b border-green-700" > Imprint, Cookies & Data Privacy< / a >
2020-05-24 22:42:15 +03:00
< / div >
2021-02-12 12:10:44 +03:00
< / footer >
< script type = "text/javascript" >
const baseUrl = location.href.substring(0, location.href.lastIndexOf('/'))
document.querySelectorAll('.with-url-src').forEach(e => {
e.setAttribute('src', e.getAttribute('src').replace('%s', baseUrl))
e.classList.remove('hidden')
})
document.querySelectorAll('.with-url-src-no-scheme').forEach(e => {
const strippedUrl = baseUrl.replace(/https?:\/\//, '')
e.setAttribute('src', e.getAttribute('src').replace('%s', strippedUrl))
e.classList.remove('hidden')
})
document.querySelectorAll('.with-url-inner').forEach(e => {
e.innerHTML = e.innerHTML.replace('%s', baseUrl)
e.classList.remove('hidden')
})
document.querySelectorAll('.with-url-inner-no-scheme').forEach(e => {
const strippedUrl = baseUrl.replace(/https?:\/\//, '')
e.innerHTML = e.innerHTML.replace('%s', strippedUrl)
e.classList.remove('hidden')
})
< / script >