computerschaf/templates/_base.html

88 lines
3.3 KiB
HTML
Raw Normal View History

2023-02-10 00:47:59 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Computerschaf{% endblock %}</title>
<link rel="stylesheet" href="static/styles.css">
<link rel="stylesheet" href="static/fonts/Lato/Lato.css">
<link rel="icon" href="" type="image/icon type">
</head>
<body>
<div class="header-contact">
<div class="header-content">
2023-02-22 15:07:16 +01:00
<span>
<img width="16" height="16" class="text-icon" src="static/img/icons/telephone.svg">
<a href="tel:+436641240214">+43 664 1240214</a>
</span>
<span>
<img width="16" height="16" class="text-icon" src="static/img/icons/mail.svg">
<a href="mailto:office@computerschaf.at">office@computerschaf.at</a>
</span>
2023-02-10 00:47:59 +01:00
</div>
</div>
<header class="header-nav">
<nav class="header-content">
<span class="header-title">
2023-02-14 02:39:54 +01:00
<img src="static/img/logo.svg" alt="" class="nav-img" height="48" width="48">
ComputerSchaf
2023-02-10 00:47:59 +01:00
</span>
<span class="header-spacer"></span>
<span>
<a href="index.html" class="nav-item link-button">Leistungen</a>
</span>
<span>
<a href="bedingungen.html" class="nav-item link-button">Bedingungen</a>
</span>
<span>
<a href="#kontakt" class="nav-item link-button">Kontakt</a>
</span>
</nav>
</header>
{% block main %}
<main>
</main>
{% endblock %}
<footer>
<div class="footer-content">
<div class="footer-address">
<h2 id="kontakt">Kontakt</h2>
2023-02-22 15:07:16 +01:00
<img width="16" height="16" class="text-icon" src="static/img/icons/telephone.svg">
<a href="tel:+436641240214">+43 664 1240214</a><br>
<img width="16" height="16" class="text-icon" src="static/img/icons/mail.svg">
<a href="mailto:office@computerschaf.at">office@computerschaf.at</a><br>
2023-02-10 00:47:59 +01:00
Adresse (nur nach Rücksprache):<br>
Ulmenstraße 65
</div>
<div class="footer-sep"></div>
<div class="footer-social">
<h2>Soziale Medien</h2>
<a href="https://www.facebook.com/people/ComputerSchaf/100090257378708/" class="social-media" target=" _blank">
2023-02-22 15:07:16 +01:00
<img width="48" height="48" class="social-icon" src="static/img/icons/facebook.svg">
2023-02-10 00:47:59 +01:00
</a>
<a href="https://www.instagram.com/ComputerSchaf/" class="social-media" target=" _blank">
2023-02-22 15:07:16 +01:00
<img width="48" height="48" class="social-icon" src="static/img/icons/instagram.svg">
2023-02-10 00:47:59 +01:00
</a>
<a href="https://www.youtube.com/channel/UCocc5i1jn2y8plvUp5SM8vQ" class="social-media" target=" _blank">
2023-02-22 15:07:16 +01:00
<img width="48" height="48" class="social-icon" src="static/img/icons/youtube.svg">
2023-02-10 00:47:59 +01:00
</a>
</div>
<div class="footer-sep"></div>
<div class="footer-info">
<h2>Informationen</h2>
<div>
<a href="impressum.html">Impressum</a><br>
<a href="datenschutz.html">Datenschutz</a>
</div>
<br>
<div class="credits">
Webdesign von <a href="https://gabrielhuber.at">Gabriel Huber</a><br>
2023-02-22 15:07:16 +01:00
Icons von <a href="https://theresagrossalber.at/">Theresa Grossalber</a>
2023-02-10 00:47:59 +01:00
</div>
</div>
</div>
</footer>
</body>
</html>