@ -0,0 +1,33 @@ |
|||
<div class="component-article"> |
|||
<div class="container"> |
|||
<div class="row"> |
|||
<div class="col-12 col-md-10 pb-4"> |
|||
<div class="row"> |
|||
|
|||
<div class="col-12 pb-4"> |
|||
<input type="text" class="input-gray" placeholder="Cerca..."> |
|||
</div> |
|||
|
|||
<div class="col-12"> |
|||
<img class="image" src="/images/articleHeader.png"> |
|||
</div> |
|||
<div class="col-12"> |
|||
<h2 class="title"> |
|||
La tecnica dell'assaggio |
|||
</h2> |
|||
<span class="subtitle"> |
|||
Come degustare un olio extravergine |
|||
</span> |
|||
<span class="text"> |
|||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
|||
</span> |
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
<div class="col-12 col-md-2 banner"> |
|||
<br><br>banner<br><br> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
@ -0,0 +1,5 @@ |
|||
|
|||
$(document).ready( () => { |
|||
console.log('Load component - article') |
|||
|
|||
}) |
@ -0,0 +1,41 @@ |
|||
@import "../../src/scss/variables.scss"; |
|||
@import "../../src/scss/mixins.scss"; |
|||
|
|||
.component-article { |
|||
padding: 40px 0; |
|||
|
|||
.banner { |
|||
background: $light-gray; |
|||
text-align: center; |
|||
} |
|||
|
|||
.image { |
|||
width: 100%; |
|||
} |
|||
|
|||
.title { |
|||
display: block; |
|||
font-size: $font-30; |
|||
font-weight: normal; |
|||
padding: 15px 0; |
|||
margin: 0; |
|||
color: $olive; |
|||
} |
|||
|
|||
.subtitle { |
|||
display: block; |
|||
font-size: $font-18; |
|||
font-weight: bold; |
|||
padding-bottom: 7px; |
|||
margin-bottom: 15px; |
|||
color: $dark-gray; |
|||
} |
|||
|
|||
.text { |
|||
display: block; |
|||
font-size: $font-16; |
|||
padding-bottom: 5px; |
|||
color: $dark-gray; |
|||
} |
|||
|
|||
} |
@ -0,0 +1,7 @@ |
|||
<div class="component-articleBox"> |
|||
<a href="/article"> |
|||
<img class="image" src="/images/article1.png"> |
|||
<span class="title">Titolo articolo </span> |
|||
<span class="marker olive"></span> |
|||
</a> |
|||
</div> |
@ -0,0 +1,5 @@ |
|||
|
|||
$(document).ready( () => { |
|||
console.log('Load component - articleBox') |
|||
|
|||
}) |
@ -0,0 +1,60 @@ |
|||
@import "../../src/scss/variables.scss"; |
|||
@import "../../src/scss/mixins.scss"; |
|||
|
|||
.component-articleBox { |
|||
|
|||
position: relative; |
|||
padding-bottom: 20px; |
|||
height: 100%; |
|||
|
|||
.image { |
|||
width: 100%; |
|||
padding-bottom: 10px; |
|||
} |
|||
|
|||
.title { |
|||
display: block; |
|||
width: 100%; |
|||
padding-right: 5px; |
|||
font-size: $font-16; |
|||
font-weight: 600; |
|||
line-height: $font-16; |
|||
color: $black; |
|||
} |
|||
|
|||
.marker { |
|||
position: absolute; |
|||
top: 10px; |
|||
left: 10px; |
|||
|
|||
&:before { |
|||
position: absolute; |
|||
content: '\e903'; |
|||
font-family: $icon; |
|||
font-size: 30px; |
|||
color: $white; |
|||
} |
|||
&:after { |
|||
position: absolute; |
|||
top: 4px; |
|||
left: 3px; |
|||
content: '\e903'; |
|||
font-family: $icon; |
|||
font-size: 24px; |
|||
color: $gray; |
|||
} |
|||
&.olive { |
|||
&:after {color: $olive;} |
|||
} |
|||
&.gray { |
|||
&:after {color: $dark-gray;} |
|||
} |
|||
&.white { |
|||
&:after {color: $white;} |
|||
} |
|||
&.orange { |
|||
&:after {color: $orange;} |
|||
} |
|||
} |
|||
|
|||
} |
@ -0,0 +1,7 @@ |
|||
<div class="component-articleBox"> |
|||
<a href="/article"> |
|||
<img class="image" src="/images/article2.png"> |
|||
<span class="title">Titolo articolo test 2 </span> |
|||
<span class="marker gray"></span> |
|||
</a> |
|||
</div> |
@ -0,0 +1,7 @@ |
|||
<div class="component-articleBox"> |
|||
<a href="/article"> |
|||
<img class="image" src="/images/article3.png"> |
|||
<span class="title">Titolo articolo </span> |
|||
<span class="marker white"></span> |
|||
</a> |
|||
</div> |
@ -0,0 +1,7 @@ |
|||
<div class="component-articleBox"> |
|||
<a href="/article"> |
|||
<img class="image" src="/images/article4.png"> |
|||
<span class="title">Titolo articolo </span> |
|||
<span class="marker orange"></span> |
|||
</a> |
|||
</div> |
@ -0,0 +1,53 @@ |
|||
<div class="component-articles"> |
|||
<div class="container"> |
|||
<div class="row"> |
|||
<div class="col-12 col-md-10"> |
|||
<div class="row"> |
|||
|
|||
<div class="col-12 pb-1"> |
|||
<input type="text" class="input-gray" placeholder="Cerca..."> |
|||
</div> |
|||
|
|||
<div class="col-12 pb-4"> |
|||
<select class="select"> |
|||
<option value="">Filtra</option> |
|||
<option value="1">Opzione 1</option> |
|||
<option value="2">Opzione 2</option> |
|||
<option value="3">Opzione 3</option> |
|||
<option value="4">Opzione 4</option> |
|||
</select> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox.html')} |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox2.html')} |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox3.html')} |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox4.html')} |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox.html')} |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox.html')} |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox.html')} |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-3"> |
|||
${require('../articleBox/articleBox.html')} |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-12 col-md-2 banner"> |
|||
<br><br>banner |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
@ -0,0 +1,5 @@ |
|||
|
|||
$(document).ready( () => { |
|||
console.log('Load component - articles') |
|||
|
|||
}) |
@ -0,0 +1,11 @@ |
|||
@import "../../src/scss/variables.scss"; |
|||
@import "../../src/scss/mixins.scss"; |
|||
|
|||
.component-articles { |
|||
padding: 40px 0; |
|||
|
|||
.banner { |
|||
background: $light-gray; |
|||
text-align: center; |
|||
} |
|||
} |
@ -1,8 +1,8 @@ |
|||
<div class="component-footer"> |
|||
<div class="container d-flex my-auto"> |
|||
<ul class="menu"> |
|||
<li class="item mr-4"> |
|||
<a href="/iolovolio" class="label"><b>io</b>lov<b>olio.</b></a> |
|||
<li class="item mr-md-4"> |
|||
<a href="/iolovolio" class="label"><b>io</b>lov<b>olio</b></a> |
|||
</li> |
|||
<li class="item"> |
|||
<a href="/terms" class="label">Termini servizio</a> |
@ -0,0 +1,46 @@ |
|||
<header class="component-header"> |
|||
|
|||
<div class="container header-wrapper"> |
|||
<button class="hamburger hamburger--spin my-auto"> |
|||
<span class="hamburger-box"> |
|||
<span class="hamburger-inner"></span> |
|||
</span> |
|||
</button> |
|||
|
|||
<div class="actions"> |
|||
<button class="icon icon-user"></button> |
|||
<button class="icon icon-cart"><span class="qty">3</span></button> |
|||
</div> |
|||
|
|||
<ul class="menu"> |
|||
<li class="item <?php if(!$_GET['q'] || $_GET['q'] == 'iolovolio') { echo "active";}?>"> |
|||
<a href="/iolovolio" class="label"><b>io</b>lov<b>olio ...</b></a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'buy' || $_GET['q'] == 'product') { echo "active";}?>"> |
|||
<a href="/buy" class="label">acquistare</a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'article' || $_GET['q'] == 'learn') { echo "active";}?>"> |
|||
<a href="/learn" class="label">imparare</a> |
|||
</li> |
|||
<li class="item disabled"> |
|||
<span class="label">produrre (coming soon)</span> |
|||
</li> |
|||
</ul> |
|||
|
|||
<ul class="sidebar-menu"> |
|||
<li class="item <?php if(!$_GET['q'] || $_GET['q'] == 'iolovolio') { echo "active";}?>"> |
|||
<a href="/iolovolio" class="label"><b>io</b>lov<b>olio ...</b></a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'buy' || $_GET['q'] == 'product') { echo "active";}?>"> |
|||
<a href="/buy" class="label">acquistare</a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'article' || $_GET['q'] == 'learn') { echo "active";}?>"> |
|||
<a href="/learn" class="label">imparare</a> |
|||
</li> |
|||
<li class="item disabled"> |
|||
<span class="label">produrre (coming soon)</span> |
|||
</li> |
|||
</ul> |
|||
</div> |
|||
|
|||
</header> |
@ -0,0 +1,23 @@ |
|||
|
|||
$(document).ready( () => { |
|||
console.log('Load component - header') |
|||
|
|||
const component = $('.component-header') |
|||
|
|||
const hamburger = component.find('.hamburger') |
|||
const menu = component.find('.sidebar-menu') |
|||
|
|||
hamburger.off('.click').on('click.click', (e) => { |
|||
const ham = $(e.currentTarget) |
|||
|
|||
ham.toggleClass('is-active') |
|||
console.log(ham, menu) |
|||
|
|||
if(ham.hasClass('is-active')){ |
|||
menu.addClass('active') |
|||
} else { |
|||
menu.removeClass('active') |
|||
} |
|||
}) |
|||
|
|||
}) |
@ -0,0 +1,167 @@ |
|||
@import "../../src/scss/variables.scss"; |
|||
@import "../../src/scss/mixins.scss"; |
|||
|
|||
.component-header { |
|||
position: fixed; |
|||
display: flex; |
|||
top: 0; |
|||
left: 0; |
|||
height: $header-height-mobile; |
|||
width: 100%; |
|||
background: $olive; |
|||
color: $white; |
|||
z-index: 200; |
|||
|
|||
.header-wrapper { |
|||
display: flex; |
|||
position: relative; |
|||
|
|||
.hamburger { |
|||
display: flex; |
|||
margin-right: 20px; |
|||
} |
|||
|
|||
.actions { |
|||
position: absolute; |
|||
right: 10px; |
|||
top: 50%; |
|||
transform: translateY(-50%); |
|||
|
|||
.icon { |
|||
position: relative; |
|||
margin: 0 5px; |
|||
padding: 0; |
|||
background: none; |
|||
border: none; |
|||
color: $white; |
|||
font-size: $font-24; |
|||
|
|||
.qty { |
|||
position: absolute; |
|||
top: -5px; |
|||
right: -5px; |
|||
height: 15px; |
|||
width: 15px; |
|||
border-radius: 50%; |
|||
background: $orange; |
|||
color: $white; |
|||
font-size: $font-12; |
|||
line-height: $font-16; |
|||
font-family: $font-sans; |
|||
} |
|||
} |
|||
} |
|||
|
|||
.menu { |
|||
display: none; |
|||
list-style: none; |
|||
margin: 0; |
|||
padding: 0; |
|||
|
|||
.item { |
|||
display: flex; |
|||
color: $white; |
|||
margin: auto 20px; |
|||
font-size: $font-20; |
|||
letter-spacing: 2px; |
|||
|
|||
.label { |
|||
color: $white; |
|||
} |
|||
|
|||
&.active { |
|||
border-bottom: 2px solid $white; |
|||
} |
|||
|
|||
&.disabled { |
|||
.label { |
|||
color: $white-alpha; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
.sidebar-menu { |
|||
position: fixed; |
|||
top: $header-height-mobile; |
|||
left: 0; |
|||
height: calc(100vh - #{$header-height-mobile}); |
|||
background: $olive; |
|||
display: block; |
|||
list-style: none; |
|||
margin: 0; |
|||
padding: 0; |
|||
transform: translateX(-100%); |
|||
transition: transform .3s; |
|||
|
|||
.item { |
|||
display: block; |
|||
color: $white; |
|||
margin: 20px; |
|||
font-size: $font-20; |
|||
letter-spacing: 2px; |
|||
padding: 20px; |
|||
border-bottom: 1px dotted $gray; |
|||
|
|||
.label { |
|||
color: $white; |
|||
} |
|||
|
|||
&.active { |
|||
//border-bottom: 2px solid $white; |
|||
} |
|||
|
|||
&.disabled { |
|||
.label { |
|||
color: $white-alpha; |
|||
} |
|||
} |
|||
} |
|||
|
|||
&.active { |
|||
transform: translateX(0%); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
@media (min-width: map-get($grid-breakpoints, 'md')) { |
|||
.component-header { |
|||
height: $header-height; |
|||
|
|||
.header-wrapper { |
|||
.actions { |
|||
position: absolute; |
|||
right: 0; |
|||
|
|||
.icon { |
|||
margin: 0 5px; |
|||
font-size: $font-30; |
|||
|
|||
.qty { |
|||
position: absolute; |
|||
top: -15px; |
|||
right: -15px; |
|||
height: 25px; |
|||
width: 25px; |
|||
font-size: $font-20; |
|||
line-height: $font-24; |
|||
} |
|||
} |
|||
} |
|||
|
|||
.menu { |
|||
display: flex; |
|||
} |
|||
|
|||
.sidebar-menu { |
|||
top: $header-height; |
|||
height: calc(100vh - #{$header-height}); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
@ -0,0 +1,41 @@ |
|||
<div class="component-pdp"> |
|||
<div class="container"> |
|||
<div class="row"> |
|||
<div class="col-12 col-md-10 pb-4"> |
|||
<div class="row"> |
|||
|
|||
<div class="col-12 pb-4"> |
|||
<input type="text" class="input-gray" placeholder="Cerca..."> |
|||
</div> |
|||
|
|||
<div class="col-12 col-sm-6 col-md-5"> |
|||
<img class="image" src="/images/prod2.png"> |
|||
</div> |
|||
<div class="col-12 col-sm-6 col-md-4 px-3"> |
|||
<h2 class="title"> |
|||
Nome prodotto |
|||
</h2> |
|||
<span class="subtitle"> |
|||
Dettagli |
|||
</span> |
|||
<span class="text"> |
|||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
|||
</span> |
|||
</div> |
|||
<div class="col-12 col-sm-12 col-md-3"> |
|||
<span class="price">17,90 €</span> |
|||
<button class="button button-black w-100">Aggiungi al carrello</button> |
|||
<div class="related"> |
|||
<br><br>Prodotti correlati<br><br> |
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
</div> |
|||
</div> |
|||
<div class="col-12 col-md-2 banner"> |
|||
<br><br>banner<br><br> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
@ -0,0 +1,5 @@ |
|||
|
|||
$(document).ready( () => { |
|||
console.log('Load component - pdp') |
|||
|
|||
}) |
@ -0,0 +1,54 @@ |
|||
@import "../../src/scss/variables.scss"; |
|||
@import "../../src/scss/mixins.scss"; |
|||
|
|||
.component-pdp { |
|||
padding: 40px 0; |
|||
|
|||
.banner { |
|||
background: $light-gray; |
|||
text-align: center; |
|||
} |
|||
|
|||
.image { |
|||
width: 100%; |
|||
} |
|||
|
|||
.title { |
|||
display: block; |
|||
font-size: $font-30; |
|||
font-weight: normal; |
|||
padding: 0 0 30px 0; |
|||
margin: 0; |
|||
} |
|||
|
|||
.subtitle { |
|||
display: block; |
|||
font-size: $font-12; |
|||
text-transform: uppercase; |
|||
padding-bottom: 7px; |
|||
margin-bottom: 30px; |
|||
border-bottom: 1px solid $gray; |
|||
} |
|||
|
|||
.text { |
|||
display: block; |
|||
font-size: $font-12; |
|||
padding-bottom: 5px; |
|||
} |
|||
|
|||
.price { |
|||
display: block; |
|||
font-size: $font-26; |
|||
font-weight: normal; |
|||
text-align: right; |
|||
padding: 0 0 20px 0; |
|||
margin: 0; |
|||
} |
|||
|
|||
.related { |
|||
background: $light-gray; |
|||
text-align: center; |
|||
margin-top: 40px; |
|||
height: calc(100% - 130px); |
|||
} |
|||
} |
@ -0,0 +1,10 @@ |
|||
<div class="component-productBox"> |
|||
<a href="/product"> |
|||
<img class="image" src="/images/prod1.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto </span> |
|||
<span class="price">17,90 €</span> |
|||
</div> |
|||
</a> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
@ -0,0 +1,10 @@ |
|||
<div class="component-productBox"> |
|||
<a href="/product"> |
|||
<img class="image" src="/images/prod2.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto Nome prodotto Nome prodotto </span> |
|||
<span class="price">170,90 €</span> |
|||
</div> |
|||
</a> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
@ -0,0 +1,10 @@ |
|||
<div class="component-productBox"> |
|||
<a href="/product"> |
|||
<img class="image" src="/images/prod3.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto</span> |
|||
<span class="price">7,90 €</span> |
|||
</div> |
|||
</a> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
@ -0,0 +1,10 @@ |
|||
<div class="component-productBox"> |
|||
<a href="/product"> |
|||
<img class="image" src="/images/prod4.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto</span> |
|||
<span class="price">8,90 €</span> |
|||
</div> |
|||
</a> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
@ -0,0 +1,8 @@ |
|||
RewriteEngine On |
|||
RewriteCond %{REQUEST_FILENAME} !-f |
|||
RewriteRule ^([^\.]+)$ index.php?q=$1 [NC,L] |
|||
# |
|||
# Rewritebase / |
|||
# RewriteCond %{REQUEST_FILENAME} !-f |
|||
# RewriteCond %{REQUEST_FILENAME} !-d |
|||
# RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] |
@ -0,0 +1,5 @@ |
|||
|
|||
${require('../components/article/article.html')} |
|||
|
|||
|
|||
|
@ -0,0 +1,32 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="it"> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<title>IoLovOlio</title> |
|||
<meta name="viewport" content="width=device-width, user-scalable=no,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> |
|||
<meta name="description" content="."> |
|||
<link rel="stylesheet" href="/assets/css/styles.css"> |
|||
</head> |
|||
<body> |
|||
|
|||
${require('../components/header/header.html')} |
|||
|
|||
|
|||
<?php |
|||
if(!$_GET['q'] || $_GET['q'] == 'home' || $_GET['q'] == 'iolovolio') { |
|||
@include 'home.php'; |
|||
} else { |
|||
?> |
|||
<main class="main-content"> |
|||
<?php |
|||
@include $_GET['q'].'.php'; |
|||
?> |
|||
</main> |
|||
<?php |
|||
} |
|||
?> |
|||
|
|||
${require('../components/footer/footer.html')} |
|||
|
|||
</body> |
|||
</html> |
@ -0,0 +1,5 @@ |
|||
|
|||
${require('../components/articles/articles.html')} |
|||
|
|||
|
|||
|
@ -0,0 +1,4 @@ |
|||
${require('../components/pdp/pdp.html')} |
|||
|
|||
|
|||
|
@ -0,0 +1,5 @@ |
|||
<div class="component-breadcrumb"> |
|||
<div class="row no-gutters"> |
|||
breadcrumb |
|||
</div> |
|||
</div> |
@ -0,0 +1,5 @@ |
|||
|
|||
$(document).ready( () => { |
|||
console.log('Load component - breadcrumb') |
|||
|
|||
}) |
@ -0,0 +1,8 @@ |
|||
@import "../../src/scss/variables.scss"; |
|||
@import "../../src/scss/mixins.scss"; |
|||
|
|||
.component-breadcrumb { |
|||
width: 100%; |
|||
background: $brown; |
|||
height: 100px; |
|||
} |
@ -1,46 +1,40 @@ |
|||
<header class="component-header"> |
|||
|
|||
<div class="container header-wrapper"> |
|||
<button class="hamburger hamburger--spin my-auto"> |
|||
|
|||
<img class="logo" src="/images/logoHeader.png"> |
|||
|
|||
<button class="hamburger hamburger--spring my-auto"> |
|||
<span class="hamburger-box"> |
|||
<span class="hamburger-inner"></span> |
|||
</span> |
|||
</button> |
|||
|
|||
<div class="actions"> |
|||
<button class="icon icon-user"></button> |
|||
<button class="icon icon-cart"><span class="qty">3</span></button> |
|||
</div> |
|||
|
|||
<ul class="menu"> |
|||
<li class="item <?php if(!$_GET['q'] || $_GET['q'] == 'iolovolio') { echo "active";}?>"> |
|||
<a href="/iolovolio" class="label"><b>io</b>lov<b>olio ...</b></a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'buy') { echo "active";}?>"> |
|||
<a href="/buy" class="label">acquistare</a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'learn') { echo "active";}?>"> |
|||
<a href="/learn" class="label">imparare</a> |
|||
</li> |
|||
<li class="item disabled"> |
|||
<span class="label">produrre (coming soon)</span> |
|||
</li> |
|||
</ul> |
|||
|
|||
<ul class="sidebar-menu"> |
|||
<li class="item <?php if(!$_GET['q'] || $_GET['q'] == 'iolovolio') { echo "active";}?>"> |
|||
<a href="/iolovolio" class="label"><b>io</b>lov<b>olio ...</b></a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'buy') { echo "active";}?>"> |
|||
<a href="/buy" class="label">acquistare</a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'learn') { echo "active";}?>"> |
|||
<a href="/learn" class="label">imparare</a> |
|||
</li> |
|||
<li class="item disabled"> |
|||
<span class="label">produrre (coming soon)</span> |
|||
</li> |
|||
</ul> |
|||
|
|||
<nav class="menu-container"> |
|||
<span class="menu-label"> |
|||
<a href="/iolovolio" class="label">iolovolio</b></a> |
|||
</span> |
|||
|
|||
<ul class="menu"> |
|||
<li class="item <?php if($_GET['q'] == 'learn') { echo "active";}?>"> |
|||
<a href="/learn" class="label">conoscere</a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'produce') { echo "active";}?>"> |
|||
<a href="/produce" class="label">produrre</a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'buy') { echo "active";}?>"> |
|||
<a href="/buy" class="label">acquistare</a> |
|||
</li> |
|||
<li class="item <?php if($_GET['q'] == 'recount') { echo "active";}?>"> |
|||
<a href="/recount" class="label">raccontare</a> |
|||
</li> |
|||
</ul> |
|||
</nav> |
|||
</div> |
|||
|
|||
<?php |
|||
@include('components/breadcrumb/breadcrumb.php'); |
|||
?> |
|||
|
|||
</header> |
|||
|
@ -1,8 +0,0 @@ |
|||
<div class="component-productBox"> |
|||
<img class="image" src="/images/prod1.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto </span> |
|||
<span class="price">17,90 €</span> |
|||
</div> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
@ -1,8 +0,0 @@ |
|||
<div class="component-productBox"> |
|||
<img class="image" src="/images/prod2.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto Nome prodotto Nome prodotto </span> |
|||
<span class="price">170,90 €</span> |
|||
</div> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
@ -1,8 +0,0 @@ |
|||
<div class="component-productBox"> |
|||
<img class="image" src="/images/prod3.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto</span> |
|||
<span class="price">7,90 €</span> |
|||
</div> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
@ -1,8 +0,0 @@ |
|||
<div class="component-productBox"> |
|||
<img class="image" src="/images/prod4.png"> |
|||
<div class="d-flex"> |
|||
<span class="title">Nome prodotto</span> |
|||
<span class="price">8,90 €</span> |
|||
</div> |
|||
<button class="button button-black add-to-cart">Aggiungi al carrello</button> |
|||
</div> |
Before Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 839 KiB After Width: | Height: | Size: 985 KiB |
After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 107 KiB |
@ -1 +1 @@ |
|||
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,500,700&display=swap'); |
|||
@import url('https://fonts.googleapis.com/css?family=DM+Serif+Display&family=Open+Sans:300,400,500,700&display=swap'); |
|||
|