Skip to content

Commit

Permalink
new index page, added geppo website
Browse files Browse the repository at this point in the history
  • Loading branch information
amgno committed Jan 11, 2024
1 parent 177c958 commit 8dd2ab0
Show file tree
Hide file tree
Showing 27 changed files with 1,187 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added geppo/Icone/icons8-menu-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added geppo/Icone/icons8-menu-384.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions geppo/contatti.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="it">
<head>
<script src="./cookies.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contatti</title>

<link rel="stylesheet" href="style.css">
<script src="./themeandmenu.js"></script>
</head>
<body>
<div class="main">


<div class="leftside">
<nav id="hamburgermenu">
<img src="Icone/icons8-menu-384.png" onmouseover="menu()" alt="">
</nav>

<div id="navigationmenu" onmouseleave="menu()">
<a href="./index.html">HOME</a>
<a href="./filosofia.html">FILOSOFIA</a>
<a href="./dove.html">DOVE</a>
<a href="./pizze.html">PIZZE</a>
<a href="./contatti.html">CONTATTI</a>
<p onclick="closemenu()">X</p>
</div>

<div id="contatti">
<img id="logoid" src="logos/300ppi/finaleTavola disegno 1 copia 3.png" alt="" style="display: none;">
<div id="textunderlogo">
<h1>Contatti</h1>
<p>Email: <a href="mailto:">[email protected] </a><br>
Telefono: <a href="tel:+0229514862">02/29514862</a>
</p>
</div>
</div>

<div id="bottomleft">
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div>
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div>
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div>
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> -->
</div>
</div>
</div>
</body>
</html>
23 changes: 23 additions & 0 deletions geppo/cookies.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
if(document.cookie.search("mode") == -1){
document.cookie = "mode=theme1";
}


function getCookie(cookieName) {
let cookie = {};
document.cookie.split(';').forEach(function(el) {
let [key,value] = el.split('=');
cookie[key.trim()] = value;
})
return cookie[cookieName];
}



function checktheme() {
if(getCookie("mode") === "theme1") {
changetheme('theme1');
} else {
changetheme('theme2')
}
}
59 changes: 59 additions & 0 deletions geppo/dove.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="it">
<head>
<script src="./cookies.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dove</title>

<link rel="stylesheet" href="style.css">
<script src="./themeandmenu.js"></script>
</head>
<body onload="checktheme()">
<div class="main">


<div class="leftside">
<nav id="hamburgermenu">
<img src="Icone/icons8-menu-384.png" onmouseover="menu()" alt="">
</nav>

<div id="navigationmenu" onmouseleave="menu()">
<a href="./index.html">HOME</a>
<a href="./filosofia.html">FILOSOFIA</a>
<a href="./dove.html">DOVE</a>
<a href="./pizze.html">PIZZE</a>
<a href="./contatti.html">CONTATTI</a>
<p onclick="closemenu()">X</p>
</div>

<div id="logosection">
<img id="logoid" src="logos/300ppi/finaleTavola disegno 1 copia 3.png" alt="" style="display: none;">
<div id="textunderlogo">
<h1>Dove ci puoi trovare?</h1>
<p>Aperto dalle 12 alle 14.30 e dalle 19.30 alle 22.30
Chiusura settimanale la domenica a mezzogiorno </p>
<p style="text-align: center; justify-content: center;">Via Giovanni Battista Morgagni 37</p>
</div>
</div>

<div id="bottomleft">
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div>
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div>
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div>
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> -->
</div>
</div>

<div class="rightside">
<div class="imgwrappdove" style="background-image: url(''); flex-direction: column;">
<div id="imglocation"></div>
<div class="googlemaps">
<div style="width: 100%"><iframe width="100%" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?width=100%25&amp;height=600&amp;hl=en&amp;q=Pizzeria%20Geppo%20di%20Geppo%201981%20srl,%20Via%20Giovanni%20Battista%20Morgagni,%20Milano,%20MI+(Geppo)&amp;t=&amp;z=14&amp;ie=UTF8&amp;iwloc=B&amp;output=embed"><a href="https://www.maps.ie/distance-area-calculator.html">measure distance on map</a></iframe></div>
</div>
</div>
</div>
</div>
</body>
</html>
59 changes: 59 additions & 0 deletions geppo/filosofia.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="it">
<head>
<script src="./cookies.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Filosofia</title>

<link rel="stylesheet" href="style.css">
<script src="./themeandmenu.js"></script>
</head>
<body>
<div class="main">


<div class="leftside">
<nav id="hamburgermenu">
<img src="Icone/icons8-menu-384.png" onmouseover="menu()" alt="">
</nav>

<div id="navigationmenu" onmouseleave="menu()">
<a href="./index.html">HOME</a>
<a href="./filosofia.html">FILOSOFIA</a>
<a href="./dove.html">DOVE</a>
<a href="./pizze.html">PIZZE</a>
<a href="./contatti.html">CONTATTI</a>
<p onclick="closemenu()">X</p>
</div>

<div id="logosection">
<img id="logoid" src="logos/300ppi/finaleTavola disegno 1 copia 3.png" alt="" style="display: none;">
<div id="textunderlogo">
<h1>La nostra filosofia</h1>
<p>Abbiamo iniziato a fare le pizze in questo piccolo locale nel 1981, Milano era diversa, molto diversa.

Sono passati 40 anni e facciamo le nostre pizze con la stessa ricetta, gli stessi ingredienti e la stessa filosofia.

Non ci siamo fatti convertire alle tendenze e mode degli ultimi anni: lievitazioni lunghissime, farine ricercate, pizze gourmet, ingredienti raffinati e abbinamenti azzardati.

A noi la pizza piace SEMPLICE E BUONA, come la facevamo quaranta anni fa. </p>
</div>
</div>

<div id="bottomleft">
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div>
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div>
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div>
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> -->
</div>
</div>

<div class="rightside">
<div class="imgwrapp" style="background-image: url('./optimized\ imgs/Melanzana.jpg');">
</div>
</div>
</div>
</body>
</html>
53 changes: 53 additions & 0 deletions geppo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="it">
<head>
<script src="./cookies.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>

<link rel="stylesheet" href="style.css">
<script src="./themeandmenu.js"></script>
</head>
<body>
<div class="main">


<div class="leftside">
<nav id="hamburgermenu">
<img src="./Icone/icons8-menu-384.png" onmouseover="menu()" alt="">
</nav>

<div id="navigationmenu" onmouseleave="menu()">
<a href="./index.html">HOME</a>
<a href="./filosofia.html">FILOSOFIA</a>
<a href="./dove.html">DOVE</a>
<a href="./pizze.html">PIZZE</a>
<a href="./contatti.html">CONTATTI</a>
<p onclick="closemenu()">X</p>
</div>

<div id="logosection">
<img id="logoid" src="./logos/300ppi/finaleTavola disegno 1 copia 3.png" alt="">
<div id="textunderlogo">
<h2>DAL 1981 A MILANO</h2>
<h1 style="margin-top: -1vh;">Pizza semplice e buona</h1>
</div>
</div>

<div id="bottomleft">
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div>
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div>
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div>
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> -->
</div>
</div>

<div class="rightside">
<div class="imgwrapp">
</div>
</div>
</div>
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added geppo/logos/300ppi/finaleTavola disegno 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added geppo/logos/logo1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added geppo/logos/logo2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8dd2ab0

Please sign in to comment.