2019-03-18 14:37:01 +00:00
|
|
|
<template>
|
|
|
|
<main>
|
|
|
|
<vue-headful
|
|
|
|
:title="$t('meta.title') + ' - ' + $t('hof.title')"
|
|
|
|
/>
|
2019-03-28 15:17:37 +00:00
|
|
|
<section class="clearfix faq">
|
2019-03-18 14:37:01 +00:00
|
|
|
<div class="container">
|
|
|
|
<h1>{{ $t('news.title') }}</h1>
|
|
|
|
<span>{{ $t('news.subtitle') }}</span>
|
2019-03-28 15:20:24 +00:00
|
|
|
<div v-for="bloc in $t('news.blocs')">
|
|
|
|
<a :href="`#${bloc.id}`"><h2 :id="bloc.id">{{ bloc.title }}</h2></a>
|
2019-03-18 14:37:01 +00:00
|
|
|
<p v-for="p in bloc.text" v-html="p"></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
</template>
|
|
|
|
|