forked from nutomic/joinpeertube
YOLO!
This commit is contained in:
parent
70f6791ebd
commit
add4bb595a
1 changed files with 3 additions and 2 deletions
|
@ -7,9 +7,10 @@
|
|||
<div class="container">
|
||||
<h1>{{ $t('news.title') }}</h1>
|
||||
<span>{{ $t('news.subtitle') }}</span>
|
||||
<div v-for="bloc in $t('news.blocs')">
|
||||
<a :href="`#${bloc.id}`"><h2 :id="bloc.id">{{ bloc.title }}</h2></a>
|
||||
<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>
|
||||
<hr />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue