25 lines
No EOL
956 B
Text
25 lines
No EOL
956 B
Text
{{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 href="index.html" 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.html" {{end}}>Wyroby</a>
|
|
<a{{if (ne . "portfolio")}} href="portfolio.html" {{end}}>Portfolio</a>
|
|
<a{{if (ne . "kawiarnia")}} href="kawiarnia.html" {{end}}>Kawiarnia</a>
|
|
</div>
|
|
<a class="btn" href="#footer">Kontakt</a>
|
|
</div>
|
|
</nav>
|
|
{{end}} |