joinpeertube/app/components/pages/News.vue
Thomas Citharel 4c2f6aaf76
Fix news link and remove news first paraph
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2019-03-28 16:59:04 +01:00

18 lines
591 B
Vue

<template>
<main>
<vue-headful
:title="$t('meta.title') + ' - ' + $t('hof.title')"
/>
<section class="clearfix faq">
<div class="container">
<h1>{{ $t('news.title') }}</h1>
<span>{{ $t('news.subtitle') }}</span>
<div v-for="(bloc, key) in $t('news.blocs')" :id="key">
<a :href="`#${key}`"><h2>{{ bloc.title }}</h2></a>
<p v-for="p in bloc.text" v-html="p"></p>
</div>
</div>
</section>
</main>
</template>