build step for less repetition
This commit is contained in:
parent
d894860000
commit
41884e7386
23 changed files with 1791 additions and 132 deletions
2
.dev
2
.dev
|
|
@ -1 +1 @@
|
|||
cd www && python3 -m http.server 8000
|
||||
go run . && cd www && python3 -m http.server 8000
|
||||
|
|
|
|||
3
go.mod
Normal file
3
go.mod
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
module piekarnikgosi
|
||||
|
||||
go 1.26.2
|
||||
47
main.go
Normal file
47
main.go
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"html/template"
|
||||
"os"
|
||||
)
|
||||
|
||||
func saveFile(t *template.Template, name string) {
|
||||
file, err := os.Create("www/" + name + ".html")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
defer file.Close()
|
||||
err = t.ExecuteTemplate(file, name+".gohtml", nil)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
func generateHTML() {
|
||||
t, err := template.ParseGlob(`templates/*.gohtml`)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
saveFile(t, `index`)
|
||||
saveFile(t, `kawiarnia`)
|
||||
saveFile(t, `portfolio`)
|
||||
saveFile(t, `wyroby`)
|
||||
saveFile(t, `wyroby_torty`)
|
||||
}
|
||||
|
||||
func main() {
|
||||
generateHTML()
|
||||
t, err := template.ParseGlob(`templates/styles/*.css`)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
file, err := os.Create("www/styles/style.css")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
defer file.Close()
|
||||
err = t.ExecuteTemplate(file, "style.css", nil)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
92
templates/footer.gohtml
Normal file
92
templates/footer.gohtml
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
{{define "footer"}}
|
||||
<footer id="footer">
|
||||
<div>
|
||||
<div>
|
||||
<img alt="logo" src="images/logo.png" style="width: 14rem"/>
|
||||
<p>Pasja, natura i domowy smak w każdym kawałku ciasta.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h4>Lokalizacja</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://maps.app.goo.gl/YD3DWUNKBoweKdpb7">
|
||||
<div>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
||||
class="lucide lucide-map-pin-icon lucide-map-pin">
|
||||
<path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"/>
|
||||
<circle cx="12" cy="10" r="3"/>
|
||||
</svg>
|
||||
<span>Pracownia</span></div>
|
||||
<p>ul. Polna 7k<br>
|
||||
83-314 Somonino</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://maps.app.goo.gl/568ax4QLJnXvqbhD9">
|
||||
<div>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
||||
class="lucide lucide-map-pin-icon lucide-map-pin">
|
||||
<path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"/>
|
||||
<circle cx="12" cy="10" r="3"/>
|
||||
</svg>
|
||||
<span>Kawiarnia</span></div>
|
||||
<p>ul. Dworcowa 3a<br>
|
||||
83-300 Kartuzy</p>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4>Kontakt</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://facebook.com/piekarnikgosi">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 48 48">
|
||||
<mask id="ipSFacebook0">
|
||||
<path fill="#fff" stroke="#fff" stroke-linejoin="round" stroke-width="3.8"
|
||||
d="M36 12.6h-6.013c-1.086 0-1.967.88-1.967 1.967v6.9H36l-1.169 7.597h-6.81V43h-8.776V29.064H12v-7.597h7.151l.094-7.21l-.013-1.31A7.868 7.868 0 0 1 27.099 5H36v7.6Z"/>
|
||||
</mask>
|
||||
<path fill="currentColor" d="M0 0h48v48H0z" mask="url(#ipSFacebook0)"/>
|
||||
</svg>
|
||||
<span>facebook.com/PiekarnikGosi</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://instagram.com/piekarnikgosi">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 24 24">
|
||||
<path fill="currentColor"
|
||||
d="M17.34 5.46a1.2 1.2 0 1 0 1.2 1.2a1.2 1.2 0 0 0-1.2-1.2Zm4.6 2.42a7.59 7.59 0 0 0-.46-2.43a4.94 4.94 0 0 0-1.16-1.77a4.7 4.7 0 0 0-1.77-1.15a7.3 7.3 0 0 0-2.43-.47C15.06 2 14.72 2 12 2s-3.06 0-4.12.06a7.3 7.3 0 0 0-2.43.47a4.78 4.78 0 0 0-1.77 1.15a4.7 4.7 0 0 0-1.15 1.77a7.3 7.3 0 0 0-.47 2.43C2 8.94 2 9.28 2 12s0 3.06.06 4.12a7.3 7.3 0 0 0 .47 2.43a4.7 4.7 0 0 0 1.15 1.77a4.78 4.78 0 0 0 1.77 1.15a7.3 7.3 0 0 0 2.43.47C8.94 22 9.28 22 12 22s3.06 0 4.12-.06a7.3 7.3 0 0 0 2.43-.47a4.7 4.7 0 0 0 1.77-1.15a4.85 4.85 0 0 0 1.16-1.77a7.59 7.59 0 0 0 .46-2.43c0-1.06.06-1.4.06-4.12s0-3.06-.06-4.12ZM20.14 16a5.61 5.61 0 0 1-.34 1.86a3.06 3.06 0 0 1-.75 1.15a3.19 3.19 0 0 1-1.15.75a5.61 5.61 0 0 1-1.86.34c-1 .05-1.37.06-4 .06s-3 0-4-.06a5.73 5.73 0 0 1-1.94-.3a3.27 3.27 0 0 1-1.1-.75a3 3 0 0 1-.74-1.15a5.54 5.54 0 0 1-.4-1.9c0-1-.06-1.37-.06-4s0-3 .06-4a5.54 5.54 0 0 1 .35-1.9A3 3 0 0 1 5 5a3.14 3.14 0 0 1 1.1-.8A5.73 5.73 0 0 1 8 3.86c1 0 1.37-.06 4-.06s3 0 4 .06a5.61 5.61 0 0 1 1.86.34a3.06 3.06 0 0 1 1.19.8a3.06 3.06 0 0 1 .75 1.1a5.61 5.61 0 0 1 .34 1.9c.05 1 .06 1.37.06 4s-.01 3-.06 4ZM12 6.87A5.13 5.13 0 1 0 17.14 12A5.12 5.12 0 0 0 12 6.87Zm0 8.46A3.33 3.33 0 1 1 15.33 12A3.33 3.33 0 0 1 12 15.33Z"/>
|
||||
</svg>
|
||||
<span>instagram.com/PiekarnikGosi</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mailto:gosia@piekarnikgosi.pl">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
||||
class="lucide lucide-mail-icon lucide-mail">
|
||||
<path d="m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"/>
|
||||
<rect x="2" y="4" width="20" height="16" rx="2"/>
|
||||
</svg>
|
||||
<span>gosia@piekarnikgosi.pl</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="tel:+48503186245">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
||||
class="lucide lucide-phone-icon lucide-phone">
|
||||
<path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"/>
|
||||
</svg>
|
||||
<span>+48 503 186 245</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>© 2026 Piekarnik Gosi.</p>
|
||||
</footer>
|
||||
</body>
|
||||
{{end}}
|
||||
25
templates/header.gohtml
Normal file
25
templates/header.gohtml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{{define "header"}}
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>Piekarnik Gosi</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<meta name="description" content=""/>
|
||||
<link href="styles/style.css" rel="stylesheet"/>
|
||||
<link rel="icon" href="images/favicon.png">
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<div>
|
||||
<img alt="logo" src="images/logo.png"/>
|
||||
<div>
|
||||
<a{{if (ne . "index")}} href="index.html" {{end}}>Strona Główna</a>
|
||||
<a{{if (ne . "wyroby")}} href="wyroby.gohtml" {{end}}>Wyroby</a>
|
||||
<a{{if (ne . "portfolio")}} href="portfolio.gohtml" {{end}}>Portfolio</a>
|
||||
<a{{if (ne . "kawiarnia")}} href="kawiarnia.gohtml" {{end}}>Kawiarnia</a>
|
||||
</div>
|
||||
<a class="btn" href="#footer">Kontakt</a>
|
||||
</div>
|
||||
</nav>
|
||||
{{end}}
|
||||
16
templates/portfolio.gohtml
Normal file
16
templates/portfolio.gohtml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{{template "header" "portfolio"}}
|
||||
<main>
|
||||
<section class="portfolio">
|
||||
<header>
|
||||
<h1>Nasze Słodkie Realizacje</h1>
|
||||
<p>Galeria pasji uwieczniona w kremie i dekoracjach. Zobacz wybrane projekty, które uświetniły wyjątkowe chwile naszych klientów – od bajkowych tortów dla dzieci po eleganckie torty weselne.</p>
|
||||
</header>
|
||||
<div>
|
||||
<a class="btn-green">Ciasta</a>
|
||||
<a class="btn-green" href="wyroby_torty.gohtml">Torty</a>
|
||||
<a class="btn-green" href="wyroby_slodkie_stoly.html">Slodkie stoły</a>
|
||||
<a class="btn-green" href="wyroby_lody.html">Lody</a>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
{{template "footer"}}
|
||||
9
templates/styles/style.css
Normal file
9
templates/styles/style.css
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{{template "normalize.css"}}
|
||||
{{template "base.css"}}
|
||||
{{template "components.css"}}
|
||||
{{template "home.css"}}
|
||||
{{template "layout.css"}}
|
||||
{{template "wyroby.css"}}
|
||||
{{template "wyroby_torty.css"}}
|
||||
{{template "portfolio.css"}}
|
||||
{{template "kawiarnia.css"}}
|
||||
164
templates/wyroby.gohtml
Normal file
164
templates/wyroby.gohtml
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
{{template "header" "wyroby"}}
|
||||
<main>
|
||||
<header class="subnav">
|
||||
<h1>Nasze słodkości</h1>
|
||||
<p>Poznaj nasze tradycyjne receptury przekute w nowoczesne formy. Każdy wypiek to historia pasji, a każde lody
|
||||
to
|
||||
powiew naturalnej świeżości</p>
|
||||
<nav>
|
||||
<a class="btn-green">Ciasta</a>
|
||||
<a class="btn-green" href="wyroby_torty.gohtml">Torty</a>
|
||||
<a class="btn-green" href="wyroby_slodkie_stoly.html">Slodkie stoły</a>
|
||||
<a class="btn-green" href="wyroby_lody.html">Lody</a>
|
||||
</nav>
|
||||
</header>
|
||||
<section >
|
||||
<div id="wyroby">
|
||||
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Malinowa chmurka" src="images/wyroby/001.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Malinowa chmurka</h3>
|
||||
<span>150zł</span>
|
||||
<p>kruchy spód, warstwa malin w galaretce, krem śmietankowy, beza</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Sernik ulubiony" src="images/wyroby/002.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Sernik ulubiony</h3>
|
||||
<span>150zł</span>
|
||||
<p>kruchy spód, aksamitna masa serowa, beza z kruszonką</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Jabłecznik z kruszonką" src="images/wyroby/003.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Jabłecznik z kruszonką</h3>
|
||||
<span>130zł</span>
|
||||
<p>ciasto ucierane, jabłka, kruszonka</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Sernik klasyczny" src="www/images/wyroby/004.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Sernik klasyczny</h3>
|
||||
<span>150zł</span>
|
||||
<p>wykończony czekoladowym ganache lub oprószony cukrem pudrem</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Sernik królewski" src="www/images/wyroby/005.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Sernik królewski</h3>
|
||||
<span>150zł</span>
|
||||
<p>kakaowy spód i kruszonka, wilgotna masa serowa</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Pleśniak" src="www/images/wyroby/006.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Pleśniak</h3>
|
||||
<span>120zł</span>
|
||||
<p>kruche ciasto waniliowe, powidła owocowe, kruche ciasto kakaowe, beza i kruszonka</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Leśny mech z musem truskawkowym" src="www/images/wyroby/007.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Leśny mech z musem truskawkowym</h3>
|
||||
<span>110zł</span>
|
||||
<p>biszkoptowe ciasto z dodatkiem szpinaku, mus truskawkowy</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Snickers" src="www/images/wyroby/008.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Snickers</h3>
|
||||
<span>150zł</span>
|
||||
<p>dwie warstwy kakaowego biszkoptu a pomiędzy bezowy blat orzechowy , krem budyniowy , toffi i
|
||||
orzeszki ziemne</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Mleczna kanapka" src="www/images/wyroby/009.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Mleczna kanapka</h3>
|
||||
<span>120zł</span>
|
||||
<p>dwa blaty czekoladowego ciasta, a pomiędzy krem waniliowy z dodatkiem cienkiej warstwy
|
||||
czekoladowej</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="3Bit" src="www/images/wyroby/010.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>3Bit</h3>
|
||||
<span>120zł</span>
|
||||
<p>herbatniki, krem budyniowy, toffi i śmietana</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Biszkoptowe z kremem i owocami w galaretce" src="www/images/wyroby/011.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Biszkoptowe z kremem i owocami w galaretce</h3>
|
||||
<span>120zł</span>
|
||||
<p>biszkopt, krem budyniowy, owoce</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Kora orzechowa" src="www/images/wyroby/012.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Kora orzechowa</h3>
|
||||
<span>150zł</span>
|
||||
<p>dwa blaty bezy orzechowej a pomiędzy krem budyniowy na bazie soku z brzoskwiń, delicje
|
||||
pomarańczowe, owoce brzoskwiń i galaretka</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Nutelowiec z wiśniami" src="www/images/wyroby/013.jpg"/>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Nutelowiec z wiśniami</h3>
|
||||
<span>120zł</span>
|
||||
<p>nutelowy spód , krem śmietankowy z dodatkiem twarożku, wiśnie i galaretka</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div>
|
||||
<img alt="Karpatka" src="www/images/wyroby/014.jpg">
|
||||
</div>
|
||||
<div>
|
||||
<h3>Karpatka</h3>
|
||||
<span>120zł</span>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
{{template "footer"}}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
|
|
@ -14,20 +15,21 @@
|
|||
<img alt="logo" src="images/logo.png"/>
|
||||
<div>
|
||||
<a>Strona Główna</a>
|
||||
<a href="wyroby.html">Wyroby</a>
|
||||
<a href="portfolio.html">Portfolio</a>
|
||||
<a href="kawiarnia.html">Kawiarnia</a>
|
||||
<a href="wyroby.gohtml" >Wyroby</a>
|
||||
<a href="portfolio.gohtml" >Portfolio</a>
|
||||
<a href="kawiarnia.gohtml" >Kawiarnia</a>
|
||||
</div>
|
||||
<a class="btn" href="#footer">Kontakt</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="index">
|
||||
<header>
|
||||
<div>
|
||||
<h1>Słodkości tworzone z <span>pasją</span></h1>
|
||||
<p>Naturalne składniki, domowe receptury i pasja. Tworzymy torty i wypieki na Twoje najważniejsze chwile
|
||||
- od codziennych radości po wielkie uroczystości</p>
|
||||
<a href="wyroby.html" class="btn">Zobacz naszą ofertę</a>
|
||||
<a href="wyroby.gohtml" class="btn">Zobacz naszą ofertę</a>
|
||||
</div>
|
||||
<div>
|
||||
<img alt="tort" src="images/001.jpg"/>
|
||||
|
|
@ -160,6 +162,7 @@
|
|||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer id="footer">
|
||||
<div>
|
||||
<div>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
|
|
@ -13,14 +14,15 @@
|
|||
<div>
|
||||
<img alt="logo" src="images/logo.png"/>
|
||||
<div>
|
||||
<a href="index.html">Strona Główna</a>
|
||||
<a href="wyroby.html">Wyroby</a>
|
||||
<a href="portfolio.html">Portfolio</a>
|
||||
<a href="index.html" >Strona Główna</a>
|
||||
<a href="wyroby.gohtml" >Wyroby</a>
|
||||
<a href="portfolio.gohtml" >Portfolio</a>
|
||||
<a>Kawiarnia</a>
|
||||
</div>
|
||||
<a class="btn">Kontakt</a>
|
||||
<a class="btn" href="#footer">Kontakt</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<header id="kawiarnia-header">
|
||||
<div>
|
||||
|
|
@ -215,7 +217,8 @@
|
|||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<footer>
|
||||
|
||||
<footer id="footer">
|
||||
<div>
|
||||
<div>
|
||||
<img alt="logo" src="images/logo.png" style="width: 14rem"/>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
|
|
@ -13,14 +14,15 @@
|
|||
<div>
|
||||
<img alt="logo" src="images/logo.png"/>
|
||||
<div>
|
||||
<a href="index.html">Strona Główna</a>
|
||||
<a href="wyroby.html">Wyroby</a>
|
||||
<a href="index.html" >Strona Główna</a>
|
||||
<a href="wyroby.gohtml" >Wyroby</a>
|
||||
<a>Portfolio</a>
|
||||
<a href="kawiarnia.html">Kawiarnia</a>
|
||||
<a href="kawiarnia.gohtml" >Kawiarnia</a>
|
||||
</div>
|
||||
<a class="btn">Kontakt</a>
|
||||
<a class="btn" href="#footer">Kontakt</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<section class="portfolio">
|
||||
<header>
|
||||
|
|
@ -29,13 +31,14 @@
|
|||
</header>
|
||||
<div>
|
||||
<a class="btn-green">Ciasta</a>
|
||||
<a class="btn-green" href="wyroby_torty.html">Torty</a>
|
||||
<a class="btn-green" href="wyroby_torty.gohtml">Torty</a>
|
||||
<a class="btn-green" href="wyroby_slodkie_stoly.html">Slodkie stoły</a>
|
||||
<a class="btn-green" href="wyroby_lody.html">Lody</a>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<footer>
|
||||
|
||||
<footer id="footer">
|
||||
<div>
|
||||
<div>
|
||||
<img alt="logo" src="images/logo.png" style="width: 14rem"/>
|
||||
|
|
|
|||
1306
www/styles/style.css
1306
www/styles/style.css
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
|
|
@ -13,14 +14,15 @@
|
|||
<div>
|
||||
<img alt="logo" src="images/logo.png"/>
|
||||
<div>
|
||||
<a href="index.html">Strona Główna</a>
|
||||
<a href="index.html" >Strona Główna</a>
|
||||
<a>Wyroby</a>
|
||||
<a href="portfolio.html">Portfolio</a>
|
||||
<a href="kawiarnia.html">Kawiarnia</a>
|
||||
<a href="portfolio.gohtml" >Portfolio</a>
|
||||
<a href="kawiarnia.gohtml" >Kawiarnia</a>
|
||||
</div>
|
||||
<a class="btn">Kontakt</a>
|
||||
<a class="btn" href="#footer">Kontakt</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<header class="subnav">
|
||||
<h1>Nasze słodkości</h1>
|
||||
|
|
@ -29,7 +31,7 @@
|
|||
powiew naturalnej świeżości</p>
|
||||
<nav>
|
||||
<a class="btn-green">Ciasta</a>
|
||||
<a class="btn-green" href="wyroby_torty.html">Torty</a>
|
||||
<a class="btn-green" href="wyroby_torty.gohtml">Torty</a>
|
||||
<a class="btn-green" href="wyroby_slodkie_stoly.html">Slodkie stoły</a>
|
||||
<a class="btn-green" href="wyroby_lody.html">Lody</a>
|
||||
</nav>
|
||||
|
|
@ -183,7 +185,8 @@
|
|||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<footer>
|
||||
|
||||
<footer id="footer">
|
||||
<div>
|
||||
<div>
|
||||
<img alt="logo" src="images/logo.png" style="width: 14rem"/>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
|
|
@ -13,14 +14,15 @@
|
|||
<div>
|
||||
<img alt="logo" src="images/logo.png"/>
|
||||
<div>
|
||||
<a href="index.html">Strona Główna</a>
|
||||
<a href="index.html" >Strona Główna</a>
|
||||
<a>Wyroby</a>
|
||||
<a href="portfolio.html">Portfolio</a>
|
||||
<a href="kawiarnia.html">Kawiarnia</a>
|
||||
<a href="portfolio.gohtml" >Portfolio</a>
|
||||
<a href="kawiarnia.gohtml" >Kawiarnia</a>
|
||||
</div>
|
||||
<a class="btn">Kontakt</a>
|
||||
<a class="btn" href="#footer">Kontakt</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="wyroby-torty">
|
||||
<header class="subnav">
|
||||
<h1>Nasze słodkości</h1>
|
||||
|
|
@ -28,7 +30,7 @@
|
|||
to
|
||||
powiew naturalnej świeżości</p>
|
||||
<nav>
|
||||
<a class="btn-green" href="wyroby.html">Ciasta</a>
|
||||
<a class="btn-green" href="wyroby.gohtml">Ciasta</a>
|
||||
<a class="btn-green">Torty</a>
|
||||
<a class="btn-green" href="wyroby_slodkie_stoly.html">Slodkie stoły</a>
|
||||
<a class="btn-green" href="wyroby_lody.html">Lody</a>
|
||||
|
|
@ -148,7 +150,8 @@
|
|||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<footer>
|
||||
|
||||
<footer id="footer">
|
||||
<div>
|
||||
<div>
|
||||
<img alt="logo" src="images/logo.png" style="width: 14rem"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue