Start PhysicalSample

This commit is contained in:
Timothée Goguely 2024-12-11 15:05:40 +01:00
parent 30876abff3
commit 3f57b195bc
9 changed files with 63 additions and 9 deletions

View file

@ -154,8 +154,16 @@
</template>
</template>
<template v-if="step.id === 'physicalSample'"></template>
<!-- Empty state -->
<template v-if="step.id === 'physicalSample'">
<header>
<h3>
<router-link :to="'/' + step.uri">{{ step.title }}</router-link>
</h3>
<time :datetime="step.date">{{ step.date }}</time>
<p>{{ step.description }}</p>
</header>
<img :src="step.files[0].url" alt="" loading="lazy">
</template>
<template v-else></template>
</div>
</section>