forked from DebaucheryLibrarian/traxxx
Moved tag posters back to img/, as they are part of the project. Still using database to track which tags have a poster.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<img
|
||||
:src="`/media/${tag.poster.thumbnail}`"
|
||||
:src="`/img/${tag.poster.thumbnail}`"
|
||||
class="poster"
|
||||
>
|
||||
</a>
|
||||
|
||||
@@ -20,16 +20,6 @@
|
||||
/>
|
||||
</div>
|
||||
|
||||
<h3>Finish</h3>
|
||||
|
||||
<div class="tiles">
|
||||
<Tag
|
||||
v-for="tag in tags.finish"
|
||||
:key="`tag-${tag.id}`"
|
||||
:tag="tag"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<h3>Group</h3>
|
||||
|
||||
<div class="tiles">
|
||||
@@ -39,6 +29,16 @@
|
||||
:tag="tag"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<h3>Finish</h3>
|
||||
|
||||
<div class="tiles">
|
||||
<Tag
|
||||
v-for="tag in tags.finish"
|
||||
:key="`tag-${tag.id}`"
|
||||
:tag="tag"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<img
|
||||
v-if="tag.poster"
|
||||
:src="`/media/${tag.poster.thumbnail}`"
|
||||
:src="`/img/${tag.poster.thumbnail}`"
|
||||
:alt="tag.name"
|
||||
class="poster"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user