add donation page,delete CF

This commit is contained in:
Le Libre Au Quotidien 2020-08-15 11:08:06 +02:00
parent da80c33b94
commit 309cf832a5
4 changed files with 21 additions and 4 deletions

View File

@ -5,7 +5,7 @@
<a class="simple" href="/"><img width="80px" src="./assets/juneland.svg" alt="infojune"></a><h2>Infojune</h2>
</header>
<router-view></router-view>
<footer><a class="button" href="/cf"> PARTICIPEZ AU CROWDFOUNDING DU SITE INFOJUNE.FR</a> Crée et hébergé par <a class="link" href="https://lelibreauquotidien.fr">llaq</a> - <a class="link" href="https://git.p2p.legal/llaq/infojune">Disponible sous CC-BY-NC-SA</a></footer>
<footer><a class="button" href="/don">DONNER AU SITE INFOJUNE.FR</a> Crée et hébergé par <a class="link" href="https://lelibreauquotidien.fr">llaq</a> - <a class="link" href="https://git.p2p.legal/llaq/infojune">Disponible sous CC-BY-NC-SA</a></footer>
</div>
</template>

View File

@ -1,7 +1,13 @@
<template>
<div id="cf">
<h2>La barre de financement n'apparait pas ?</h2>
<h4>Vous pouvez donner a cette clé publique : 1YQ8r5ermphfwH32mNQ3VwBcZEa59XHd3AcnM1PemUU</h4>
<iframe src="https://wotmap.duniter.org/iframe/iframe.php?pubkey=1YQ8r5ermphfwH32mNQ3VwBcZEa59XHd3AcnM1PemUU&target=2000&title=Financer%20le%20d%C3%A9veloppement%20de%20infojune.fr%20!&node=g1.duniter.org&start_date=2020-05-25&display_pubkey=true&display_qrcode=true" width="1000px" height="1000px" frameborder="0"></iframe>
<h2>Le crowdfounding est terminé</h2>
<h3>Si vous souhaitez faire un don,rendez vous <a href="/don" class="link">ici</a></h3>
</div>
</template>
<style>
#cf{
display: flex;
flex-direction: column;
align-items: center;
}
</style>

9
src/components/don.vue Normal file
View File

@ -0,0 +1,9 @@
<template>
<div id="don">
<h2>Vous pouvez donner a la clé publique suivante :</h2>
<h4>1YQ8r5ermphfwH32mNQ3VwBcZEa59XHd3AcnM1PemUU</h4>
</div>
</template>
<style>
</style>

View File

@ -15,6 +15,7 @@ import softbox from '@/components/SoftBox.vue'
import choicebox from '@/components/ChoiceBox.vue'
import home from '@/components/home.vue'
import cf from '@/components/cf.vue'
import don from '@/components/don.vue'
import notfound from '@/components/NotFound.vue'
import faq from '@/components/faq.vue'
export const routes = [
@ -557,5 +558,6 @@ props: {
{ path: '/', component: home },
{ path: '/cf', component: cf },
{ path: '/don', component: don },
{ path: '*', component: notfound }
]