refactor: ♻️ rename gallery component in import

Use a more consistent naming scheme for imported components
This commit is contained in:
Sebin Nyshkim 2021-03-24 18:20:14 +01:00
parent 477151ae18
commit ed0fa31a0f

View file

@ -221,7 +221,7 @@
</div>
</div>
<gallery v-show="nsfw">
<ref-gallery v-show="nsfw">
<figure>
<img src="@img/muscle-ref/muscle-ref1.png" />
<figcaption>
@ -298,7 +298,7 @@
</a>
</figcaption>
</figure>
</gallery>
</ref-gallery>
<h3 v-show="nsfw" id="penis">Penis</h3>
<ref-figure v-show="nsfw">
@ -360,7 +360,7 @@
</div>
<h3>Casual Wear</h3>
<gallery>
<ref-gallery>
<figure>
<img src="@img/clothes-ref/warm/tank-top.jpg" alt="Tank Top" />
<figcaption>Loose Tank Top</figcaption>
@ -379,10 +379,10 @@
<img src="@img/clothes-ref/warm/sneakers.jpg" alt="Sneakers" />
<figcaption>Sneakers (Air Jordan style)</figcaption>
</figure>
</gallery>
</ref-gallery>
<h3>Cold Weather</h3>
<gallery>
<ref-gallery>
<figure>
<img src="@img/clothes-ref/cold/coat.jpg" alt="Coat" />
<figcaption>Coat</figcaption>
@ -403,10 +403,10 @@
<img src="@img/clothes-ref/cold/boots.jpg" alt="Boots" />
<figcaption>Boots</figcaption>
</figure>
</gallery>
</ref-gallery>
<h3>Workout</h3>
<gallery>
<ref-gallery>
<figure>
<img src="@img/clothes-ref/workout/hoodie.jpg" alt="Hoodie" />
<figcaption>
@ -433,10 +433,10 @@
<img src="@img/clothes-ref/warm/sneakers.jpg" alt="Sneakers" />
<figcaption>Sneakers (Air Jordan style)</figcaption>
</figure>
</gallery>
</ref-gallery>
<h3>"Doesn't need to leave the house today" Style</h3>
<gallery>
<ref-gallery>
<figure>
<img src="@img/clothes-ref/lazy/pants.jpg" alt="Tank Top" />
<figcaption>Tracksuit pants (optional)</figcaption>
@ -445,7 +445,7 @@
<img src="@img/clothes-ref/lazy/undies.jpg" alt="Shorts" />
<figcaption>Topless w/ jockstrap/boxer briefs</figcaption>
</figure>
</gallery>
</ref-gallery>
</section>
<section id="abilities">
@ -611,7 +611,7 @@
<script>
import QuickFacts from "@components/QuickFacts.vue";
import DataTable from "@components/DataTable.vue";
import Gallery from "@components/Gallery.vue";
import RefGallery from "@components/Gallery.vue";
import RefFigure from "@components/Figure.vue";
import RefHeader from "@components/Header.vue";
import RefFooter from "@components/Footer.vue";
@ -626,7 +626,7 @@ export default {
components: {
QuickFacts,
DataTable,
Gallery,
RefGallery,
RefFigure,
RefHeader,
RefFooter,