joinpeertube/app/components/pages/News.vue

20 lines
612 B
Vue
Raw Normal View History

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