first commit
This commit is contained in:
parent
6245f6e601
commit
76f640a088
26 changed files with 155 additions and 150 deletions
|
@ -1,6 +1,6 @@
|
|||
<script type="text/x-template" id="cider-applecurator">
|
||||
<div class="content-inner">
|
||||
<h1 class="header-text">{{ data.attributes.shortName ?? data.attributes.name}}</h1>
|
||||
<h1 class="header-text">{{ data.attributes?.shortName ?? data.attributes?.name}}</h1>
|
||||
<template v-if="data.relationships && data.relationships.grouping">
|
||||
<template v-for="(recom,index) in data.relationships.grouping.data[0].relationships.tabs.data[0].relationships.children.data">
|
||||
<div class="row">
|
||||
|
@ -26,6 +26,10 @@
|
|||
</template>
|
||||
</template>
|
||||
</template>
|
||||
<template v-if="data.relationships && data.relationships.playlists">
|
||||
<mediaitem-square :size="'300'" :item="playlist" v-for="(playlist,index) in data.relationships.playlists.data">
|
||||
</mediaitem-square>
|
||||
</template>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue