home display

This commit is contained in:
2023-02-19 21:23:57 +01:00
parent 58523311a2
commit 4b2558fd94
2 changed files with 18 additions and 16 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ section[role="main-content"]{
}
}
div.teasers{
div.teasers>.wrapper{
display: flex;
flex-direction: row;
flex-wrap: nowrap;
+17 -15
View File
@@ -7,24 +7,26 @@
<h1>Les Guides de Paris</h1>
<h2>Corpus des XVII et XVIII<sup>E</sup> siècles</h2>
</header>
<section v-if="colophonHome.length && colophonHome.length > 0" class="row">
<section class="row">
<div class="col-2" />
<div class="col-8 teasers">
<article
v-for="page in colophonHome"
:key="page.uuid"
>
<!-- <h1>{{ page.title }}</h1> -->
<div v-html="trimedTei(page.tei)" />
<a
:href="page.url"
class="readmore"
@click.prevent="onclick(page.uuid)"
@keyup.enter="onclick(page.uuid)"
<div v-if="colophonHome.length && colophonHome.length > 0" class="wrapper">
<article
v-for="page in colophonHome"
:key="page.uuid"
>
<span>Lire la suite</span>
</a>
</article>
<!-- <h1>{{ page.title }}</h1> -->
<div v-html="trimedTei(page.tei)" />
<a
:href="page.url"
class="readmore"
@click.prevent="onclick(page.uuid)"
@keyup.enter="onclick(page.uuid)"
>
<span>Lire la suite</span>
</a>
</article>
</div>
</div>
<div class="col-2" />
</section>