-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDefault.vue
More file actions
49 lines (42 loc) · 1.27 KB
/
Default.vue
File metadata and controls
49 lines (42 loc) · 1.27 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
<v-app>
<default-bar />
<default-view />
<v-footer class="text-center d-flex flex-column">
<v-breadcrumbs divider="●" class="text-no-wrap">
<v-breadcrumbs-item>Scapy community</v-breadcrumbs-item>
<v-breadcrumbs-divider />
<v-breadcrumbs-item>2008-{{ currentYear }}</v-breadcrumbs-item>
<v-breadcrumbs-divider />
<v-breadcrumbs-item><a href="https://scapy.net">scapy.net</a></v-breadcrumbs-item>
</v-breadcrumbs>
<p>
This website is published under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA-2.5</a> and was developped by <a href="https://github.com/gpotter2">gpotter2</a>.
</p>
</v-footer>
</v-app>
</template>
<script lang="ts" setup>
import DefaultBar from './AppBar.vue'
import DefaultView from './View.vue'
import { provide, ref } from 'vue'
/* Declare scrolling pointers */
const downloads_section = ref<HTMLDivElement | null>(null);
provide('downloads_section', downloads_section);
/* Current year */
const currentYear = new Date().getFullYear();
</script>
<style scoped>
/* Don't display different color for visited links */
a,
a:visited {
color: inherit;
}
</style>
<style>
/* Fix mobile horizontal scrolling */
html,
body {
overflow-x: hidden;
}
</style>