infojune.old/src/App.vue

43 lines
793 B
Vue
Raw Normal View History

2020-05-24 19:37:39 +02:00
2020-02-09 19:02:08 +01:00
<template>
<div id="app">
2020-05-28 19:08:14 +02:00
<header>
<p>Le site Infojune est encore en beta, mais il s'améliorera avec le temps </p>
<a href="/#/cf"> PARTICIPEZ AU CROWDFOUNDING DU SITE INFOJUNE.FR</a>
</header>
<router-view></router-view>
2020-05-28 19:08:14 +02:00
<footer> <img width="80px" src="./assets/juneland.svg" alt="logo juneland">Crée et hébergé par <a href="https://lelibreauquotidien.fr">llaq</a> - <a href="https://git.p2p.legal/llaq/infojune">Disponible sous agplV3</a></footer>
2020-02-09 19:02:08 +01:00
</div>
</template>
<script>
export default {
name: 'app',
components: {
},
data: function(){
return{
}
2020-02-09 19:02:08 +01:00
}
}
</script>
<style>
2020-05-24 19:37:39 +02:00
footer{
flex-grow:1;
}
2020-02-09 19:02:08 +01:00
#app {
display:flex;
flex-direction: column;
2020-05-28 19:08:14 +02:00
min-height: 100vh;
}
.col{
display: flex;
flex-direction: row;
2020-02-09 19:02:08 +01:00
}
2020-05-24 19:37:39 +02:00
footer{
2020-02-09 19:02:08 +01:00
}
</style>