-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
60 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="pl"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Peklowanie na mokro - Kontakt</title> | ||
<meta name="description" content="Tabele peklowania zalewowego (na mokro) wg Dziadka" /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> | ||
<link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16"> | ||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180"> | ||
<link rel="mask-icon" href="/favicon.svg" color="#FFFFFF"> | ||
<link rel="stylesheet" href="/src/style.css"> | ||
<meta name="theme-color" content="#ffffff"> | ||
</head> | ||
{{> head pagetitle="Kontakt"}} | ||
<body> | ||
<svg> | ||
<defs> | ||
<symbol id="arrow-left"> | ||
<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="feather feather-arrow-left"> | ||
<line x1="19" y1="12" x2="5" y2="12"></line> | ||
<polyline points="12 19 5 12 12 5"></polyline> | ||
</svg> | ||
</symbol> | ||
</defs> | ||
</svg> | ||
{{> svgmap}} | ||
<main class="container"> | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href="/"> | ||
<span class="icon"><svg><use xlink:href="#arrow-left"></use></svg></span> Powrót do strony głównej | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
{{> nav}} | ||
<section> | ||
<h1>Kontakt</h1> | ||
</section> | ||
<section> | ||
<p>Z autorem można się skontaktować przez:</p> | ||
<ul> | ||
<li>w przypadku zauważonych błędów, nieścisłości lub sugestii usprawnień - <a href="https://github.com/zgoda/curingtables/issues">system zgłoszeń repozytorium na Githubie</a></li> | ||
<li>ogólna dyskusja toczy się w <a href="https://wedlinydomowe.pl/forum/topic/18619-peklowanie-mokre-kalkulator/">wydzielonym wątku na forum WB</a> i w komentarzach do <a href="https://www.facebook.com/groups/wedzarniczabrac/posts/1959070834254942/">posta ze zgłoszeniem na grupie WB na Facebooku</a></li> | ||
<li>w pozostałych sprawach - przez wiadomość prywatną <a href="https://wedlinydomowe.pl/forum/">na forum WB</a></li> | ||
</ul> | ||
</section> | ||
</main> | ||
</body> | ||
</html> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Peklowanie na mokro - {{pagetitle}}</title> | ||
<meta name="description" content="Tabele peklowania zalewowego (na mokro) wg Dziadka" /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> | ||
<link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16"> | ||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180"> | ||
<link rel="mask-icon" href="/favicon.svg" color="#FFFFFF"> | ||
<link rel="stylesheet" href="/src/style.css"> | ||
<meta name="theme-color" content="#ffffff"> | ||
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href="{{resolve-from-root '/'}}"> | ||
<span class='icon'><svg><use xlink:href='#arrow-left'></use></svg></span> Powrót do strony głównej | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<svg> | ||
<defs> | ||
<symbol id="arrow-left"> | ||
<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="feather feather-arrow-left"> | ||
<line x1="19" y1="12" x2="5" y2="12"></line> | ||
<polyline points="12 19 5 12 12 5"></polyline> | ||
</svg> | ||
</symbol> | ||
</defs> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="pl"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Peklowanie na mokro - Deklaracja poszanowania prywatności</title> | ||
<meta name="description" content="Tabele peklowania zalewowego (na mokro) wg Dziadka" /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> | ||
<link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16"> | ||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180"> | ||
<link rel="mask-icon" href="/favicon.svg" color="#FFFFFF"> | ||
<link rel="stylesheet" href="/src/style.css"> | ||
<meta name="theme-color" content="#ffffff"> | ||
</head> | ||
{{> head pagetitle="Deklaracja poszanowania prywatności"}} | ||
<body> | ||
<svg> | ||
<defs> | ||
<symbol id="arrow-left"> | ||
<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="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline> | ||
</svg> | ||
</symbol> | ||
</defs> | ||
</svg> | ||
{{> svgmap}} | ||
<main class="container"> | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href="/"> | ||
<span class="icon"><svg><use xlink:href="#arrow-left"></use></svg></span> Powrót do strony głównej | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
{{> nav}} | ||
<section> | ||
<h1>Deklaracja prywatności</h1> | ||
</section> | ||
<section> | ||
<p>Aplikacja "Peklowanie na mokro" nie zapisuje na urządzeniach użytkowników żadnych danych, ani w bazach udostępnianych przez mechanizmy przeglądarki, ani w postaci ciasteczek. Ponieważ jest hostowana w <a href="https://surge.sh/">usłudze współdzielonej</a>, jest możliwe że dostawca tej usługi monitoruje szczegóły jej użytkowania.</p> | ||
<p>Aplikacja nie zbiera, nie przechowuje i nie analizuje żadnych danych, które pozwoliłyby w jakikolwiek sposób zidentyfikować jej użytkowników.</p> | ||
</section> | ||
</main> | ||
</body> | ||
</html> |