-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
35 lines (32 loc) · 863 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<template>
<div>
<main role="main" class="col-lg-8 mx-auto p-4 py-md-5">
<NuxtPage />
</main>
<footer class="footer py-4">
<div class="container text-center">
<small>
<span class="text-muted"><a href="https://github.com/anroots/ee-domains">GitHub</a> | Abuse and contact - ando
at sqroot dot eu</span>
</small>
</div>
</footer>
</div>
</template>
<script setup>
useHead({
htmlAttrs: {
lang: 'ee'
},
title: 'ee-domains',
meta: [
{ name: 'description', content: 'Changelog of Estonian domains' },
{ name: 'keywords', content: 'axfr,eesti domeenid,estonian domains list' }
],
script: [
{
src: "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js",
}
]
})
</script>