aboutsummaryrefslogtreecommitdiff
path: root/layouts/default.vue
blob: 1ccfcd726b0badd9d4b0e164c52ccf63cd264714 (plain) (blame)
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>
  <v-app dark>
    <v-main>
      <v-container>
        <nuxt />
        <footer>
          <v-row align="center" justify="center">
            <v-col>
              <nuxt-link to="about">A propos</nuxt-link>
              <p>
                Propulsé par NuxtJS. Sous licence
                <a href="https://www.gnu.org/licenses/gpl-3.0.en.html"
                  >GNU General Public License 3.0</a
                >.
                <br />
                <a href="https://github.com/Alee14/chine-projet/">
                  La code source pour cette projet.</a
                >
              </p>
              <p>&copy; Droits d'Auteur 2020 Andrew Lee.</p>
            </v-col>
          </v-row>
        </footer>
      </v-container>
    </v-main>
  </v-app>
</template>

<script>
export default {
  data() {
    return {}
  },
}
</script>