aboutsummaryrefslogtreecommitdiff
path: root/layouts/default.vue
blob: 811b0a90da1e043fd41e63d95daf769c1e97f1ab (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
36
37
38
39
40
<template>
  <v-app dark>
    <v-main>
      <v-container>
        <nuxt />
        <footer>
          <v-row align="center" justify="center">
            <v-col>
              <nuxt-link to="/">Accueil</nuxt-link>
              <nuxt-link to="propos-chine">À propos Chine</nuxt-link>
              <nuxt-link to="culture">Culture</nuxt-link>
              <nuxt-link to="a-propos">À propos</nuxt-link>
              <br />
              <br />
              <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>