All checks were successful
Website / Website veröffentlichen (push) Successful in 9s
61 lines
2.4 KiB
HTML
61 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de_DE">
|
|
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
<meta name="description" content="{{ .Site.Params.homepage_meta_tags.meta_og_description }}" />
|
|
<meta property="og:title" content="{{ .Site.Params.homepage_meta_tags.meta_og_title }}" />
|
|
<meta property="og:type" content="{{ .Site.Params.homepage_meta_tags.meta_og_type }}" />
|
|
<meta property="og:url" content="{{ .Site.Params.homepage_meta_tags.meta_og_url }}" />
|
|
<meta property="og:image" content="{{ .Site.Params.homepage_meta_tags.meta_og_image }}" />
|
|
<meta property="og:description" content="{{ .Site.Params.homepage_meta_tags.meta_og_description }}" />
|
|
<meta name="twitter:card" content="{{ .Site.Params.homepage_meta_tags.meta_twitter_card }}" />
|
|
<meta name="twitter:site" content="{{ .Site.Params.homepage_meta_tags.meta_twitter_site }}" />
|
|
<meta name="twitter:creator" content="{{ .Site.Params.homepage_meta_tags.meta_twitter_creator }}" />
|
|
</head>
|
|
|
|
<body>
|
|
{{- partial "alert.html" . -}}
|
|
<!-- {{- partial "header.html" . -}} -->
|
|
<div class="scroll-top rounded-full">
|
|
<span class="icon-keyboard_arrow_up text-2xl"></span>
|
|
</div>
|
|
<!-- {{- partial "slide.html" . -}} -->
|
|
<!-- {{- partial "strip.html" . -}} -->
|
|
{{ if ne .Site.Params.showBlog false }}
|
|
<div class="mx-auto my-10 max-w-6xl">
|
|
<h1>Ups! Diese Website wird gerade noch entwickelt.</h1>
|
|
<h2>This Website is currently under developement.</h2>
|
|
<h3>Trotzdem Interesse? Hier meine Kontaktdaten:</h3>
|
|
<ul>
|
|
<li>Email: kontakt@ftecke.de</li>
|
|
<li>Telefon: +49 3475 2028989</li>
|
|
<li>WhatsApp: +49 176 45960424</li>
|
|
<li>Facebook: <a href="https://www.facebook.com/p/Dj-Ecke-100069638587825/">www.facebook.com</a></li>
|
|
</ul>
|
|
<!-- {{- partial "recent.html" . -}} -->
|
|
</div>
|
|
{{ end }}
|
|
<!-- {{- partial "footer.html" . -}} -->
|
|
<script src="{{ "/js/swiper-bundle.min.js" | relURL }}"></script>
|
|
<script>
|
|
var mySwiper = new Swiper(".swiper-container", {
|
|
direction: "horizontal",
|
|
loop: true,
|
|
speed: 550,
|
|
autoplay: {
|
|
delay: 6000,
|
|
},
|
|
pagination: {
|
|
el: ".swiper-pagination",
|
|
},
|
|
navigation: {
|
|
nextEl: ".swiper-button-next",
|
|
prevEl: ".swiper-button-prev",
|
|
},
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|