menu update
This commit is contained in:
parent
6a98b26adf
commit
09c06a63ef
|
@ -3,6 +3,7 @@
|
|||
--b9h-color-bg-alpha: rgba(28,39,41,0.8);
|
||||
--b9h-color-fg: #b3bfb6;
|
||||
--b9h-color-accent: #ff5821;
|
||||
--b9h-color-green: #1cd95f;
|
||||
}
|
||||
|
||||
html {
|
||||
|
|
|
@ -413,4 +413,14 @@ section.prixindicatif p {
|
|||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
h3 span.byl-icon-leaf {
|
||||
color: var(--b9h-color-green);
|
||||
font-size: 1rem;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
section.menuindicatif p {
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
}
|
|
@ -16,6 +16,7 @@ let Dishes = {
|
|||
},
|
||||
d10s : {
|
||||
name : "Pizza D10S",
|
||||
vege : true,
|
||||
ing : [
|
||||
ingredients.tomate,
|
||||
ingredients.mozzarella,
|
||||
|
|
|
@ -204,7 +204,10 @@ Vue.component('Menu',{
|
|||
<h2 class="b9h-lang-it"> {{ s.nameIT }}</h2>
|
||||
|
||||
<div class="dish" v-for="d in s.list">
|
||||
<h3 v-if="d.name !== 'blank'">{{ d.name }}</h3>
|
||||
<h3 v-if="d.name !== 'blank'">
|
||||
{{ d.name }}
|
||||
<span v-if="d.hasOwnProperty('vege')" class="byl-icon-leaf vege"></span>
|
||||
</h3>
|
||||
<ul v-if="d.name !== 'blank'">
|
||||
<p class="b9h-lang-fr"> {{ l2s(ings2ls(d.ing,"fr"), "fr") }}</p>
|
||||
<p class="b9h-lang-en"> {{ l2s(ings2ls(d.ing,"en"), "en") }}</p>
|
||||
|
@ -217,6 +220,15 @@ Vue.component('Menu',{
|
|||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="menuindicatif">
|
||||
<p class="b9h-lang-fr"> {{ indicatif.fr }}</p>
|
||||
<p class="b9h-lang-en"> {{ indicatif.en }}</p>
|
||||
<p class="b9h-lang-it"> {{ indicatif.it }}</p>
|
||||
</section>
|
||||
</br>
|
||||
</br>
|
||||
</br>
|
||||
</section>
|
||||
`,
|
||||
props : {
|
||||
|
@ -231,9 +243,9 @@ Vue.component('Menu',{
|
|||
it : " e ",
|
||||
},
|
||||
fourchette : {
|
||||
fr : "Fourchette de prix par personne:",
|
||||
fr : "Fourchette de prix par personne :",
|
||||
en : "Price range per person:",
|
||||
it : "Fascia di prezzo per persona:",
|
||||
it : "Fascia di prezzo per persona :",
|
||||
},
|
||||
horsboissons : {
|
||||
fr : "(hors boissons)",
|
||||
|
|
|
@ -51,6 +51,7 @@ let SanTelmo = {
|
|||
nameIT : "Pizza",
|
||||
list : [
|
||||
Dishes.santelmo.diavolo,
|
||||
Dishes.santelmo.d10s,
|
||||
],
|
||||
},
|
||||
pates : {
|
||||
|
|
Loading…
Reference in New Issue