wrappers, embed description in view
This commit is contained in:
parent
c1c1977c24
commit
8225d594e4
3 changed files with 13 additions and 3 deletions
|
@ -25,7 +25,8 @@ const title = computed(() => getTitleFromEntryOrId(props.entry, props.id))
|
||||||
:src='entry.thumbnailUrl || entry.url'
|
:src='entry.thumbnailUrl || entry.url'
|
||||||
:alt='entry.description || id'
|
:alt='entry.description || id'
|
||||||
)
|
)
|
||||||
p {{ title }}
|
.caption-wrapper
|
||||||
|
p {{ title }}
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="sass">
|
<style scoped lang="sass">
|
||||||
|
|
|
@ -78,13 +78,16 @@ onMounted(async () => {
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.template.gallery-list
|
.template.gallery-list
|
||||||
.gallery(
|
.navigation(
|
||||||
v-if='ready'
|
v-if='ready'
|
||||||
)
|
)
|
||||||
p(
|
p(
|
||||||
v-if='variants?.length > 0'
|
v-if='variants?.length > 0'
|
||||||
@click='onNavigateBack($event)'
|
@click='onNavigateBack($event)'
|
||||||
) Back
|
) Back
|
||||||
|
.gallery(
|
||||||
|
v-if='ready'
|
||||||
|
)
|
||||||
GalleryTile(
|
GalleryTile(
|
||||||
v-for='(entry, id) in entries'
|
v-for='(entry, id) in entries'
|
||||||
:entry='entry'
|
:entry='entry'
|
||||||
|
|
|
@ -8,6 +8,8 @@ import { fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
|
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
variants: string[]
|
variants: string[]
|
||||||
}>()
|
}>()
|
||||||
|
@ -45,7 +47,11 @@ onMounted(async () => {
|
||||||
img(
|
img(
|
||||||
:src='entry.url || entry.thumbnailUrl'
|
:src='entry.url || entry.thumbnailUrl'
|
||||||
)
|
)
|
||||||
p {{ title }}
|
.view-content
|
||||||
|
p {{ title }}
|
||||||
|
EmbedableContent(
|
||||||
|
:content='entry.description'
|
||||||
|
)
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="sass">
|
<style scoped lang="sass">
|
||||||
|
|
Loading…
Add table
Reference in a new issue