|
|
|
|
|
|
10
|
.f-col.w-max
|
10
|
.f-col.w-max
|
|
11
|
router-link(:to="`/${type}/${content.slug}`")
|
11
|
router-link(:to="`/${type}/${content.slug}`")
|
|
12
|
h1.t-up.t-cntr.t-b {{ content.title }}
|
12
|
h1.t-up.t-cntr.t-b {{ content.title }}
|
|
13
|
- p(v-if="content.end") {{ new Date(content.start * 1000).toISOString().split('T')[0] }} – {{ new Date(content.end * 1000).toISOString().split('T')[0] }}
|
|
|
|
|
|
13
|
+ p(v-if="content.end") {{ new Date(content.start * 1000).toLocaleDateString() }} – {{ new Date(content.end * 1000).toLocaleDateString() }}
|
|
14
|
p {{ content.excerpt }}
|
14
|
p {{ content.excerpt }}
|
|
15
|
</template>
|
15
|
</template>
|
|
16
|
|
16
|
|