2025-06-06 18:12:46 +02:00
|
|
|
|
{{ define "main" }}
|
|
|
|
|
|
{{ partial "page-title.html" . }}
|
|
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<!-- Intro Section -->
|
2025-07-29 19:10:33 +02:00
|
|
|
|
{{ with .Params.intro_section }}
|
2025-06-06 18:12:46 +02:00
|
|
|
|
{{ if .enable }}
|
2025-08-12 19:57:23 +02:00
|
|
|
|
<section id="about-intro" class="section" style="background-color:#ffffff; margin-top:-24px; padding-top:16px;">
|
|
|
|
|
|
<h2>Ihr Partner für nachhaltige Energielösungen</h2>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="my-container">
|
|
|
|
|
|
<div class="row align-items-center gx-5 gy-4">
|
2025-07-30 00:35:15 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<!-- TEXT -->
|
|
|
|
|
|
<div class="col-lg-7 order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
|
|
|
|
|
|
<div class="intro-content">
|
2025-08-12 19:57:23 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="intro-text article-copy">
|
|
|
|
|
|
{{ .text | markdownify }}
|
|
|
|
|
|
</div>
|
2025-07-30 00:35:15 +02:00
|
|
|
|
</div>
|
2025-06-06 18:12:46 +02:00
|
|
|
|
</div>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<!-- VIDEO (rechts, ohne abgerundete Ecken) -->
|
2025-08-12 11:05:32 +02:00
|
|
|
|
<div class="col-lg-5 order-1 order-lg-2" data-aos="fade-in" data-aos-delay="200">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="intro-media ratio ratio-16x9 shadow-sm overflow-hidden">
|
2025-08-12 11:05:32 +02:00
|
|
|
|
<video id="aboutVideo"
|
|
|
|
|
|
class="intro-video"
|
2025-08-11 18:55:52 +02:00
|
|
|
|
muted
|
|
|
|
|
|
loop
|
|
|
|
|
|
playsinline
|
2025-08-12 11:05:32 +02:00
|
|
|
|
preload="none"
|
2025-08-11 18:55:52 +02:00
|
|
|
|
poster='{{ "images/brand_poster.jpg" | relURL }}'>
|
2025-08-12 11:05:32 +02:00
|
|
|
|
<!-- Quellen werden per JS gesetzt -->
|
2025-08-11 18:55:52 +02:00
|
|
|
|
</video>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-08-12 11:05:32 +02:00
|
|
|
|
|
2025-08-12 19:57:23 +02:00
|
|
|
|
|
2025-08-12 11:05:32 +02:00
|
|
|
|
<script>
|
|
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
|
|
|
|
const vid = document.getElementById("aboutVideo");
|
|
|
|
|
|
if (!vid) return;
|
|
|
|
|
|
|
|
|
|
|
|
const srcWebm = '{{ "images/Imagevideo_Short.webm" | relURL }}';
|
|
|
|
|
|
const srcMp4 = '{{ "images/Imagevideo_Short.mp4" | relURL }}';
|
|
|
|
|
|
|
|
|
|
|
|
const observer = new IntersectionObserver(entries => {
|
|
|
|
|
|
entries.forEach(entry => {
|
|
|
|
|
|
if (entry.isIntersecting) {
|
|
|
|
|
|
vid.innerHTML = `
|
|
|
|
|
|
<source src="${srcWebm}" type="video/webm">
|
|
|
|
|
|
<source src="${srcMp4}" type="video/mp4">
|
|
|
|
|
|
`;
|
|
|
|
|
|
vid.play().catch(() => {});
|
|
|
|
|
|
observer.disconnect();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}, { rootMargin: "200px" });
|
|
|
|
|
|
|
|
|
|
|
|
observer.observe(vid);
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|
2025-07-30 00:35:15 +02:00
|
|
|
|
</div>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<!-- Mission/Vision/Ziel Section -->
|
2025-08-11 18:55:52 +02:00
|
|
|
|
{{ with .Params.mission_vision }}
|
|
|
|
|
|
{{ if .enable }}
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<section class="mission-section section pt-0" style="background-color: #f8f9fa;">
|
|
|
|
|
|
<div class="container">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="row justify-content-center">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<!-- Schlanker, mittiger Content-Bereich -->
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<!-- Headings -->
|
|
|
|
|
|
<div class="text-center mb-3">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<h1>Mission · Vision · Ziel</h1>
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<h2>Die Grundpfeiler unserer Arbeit.</h2>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="mission-tabs-wrapper">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<!-- Tabs (zentriert) -->
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<ul class="nav nav-tabs mission-tabs justify-content-center" role="tablist">
|
2025-07-30 00:35:15 +02:00
|
|
|
|
{{ range $index, $elements := .tabs }}
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
|
|
<button class="nav-link {{ if eq $index 0 }}active{{ end }}"
|
|
|
|
|
|
id="tab-{{ .name | urlize }}"
|
|
|
|
|
|
data-bs-toggle="tab"
|
|
|
|
|
|
data-bs-target="#content-{{ .name | urlize }}"
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
role="tab">
|
|
|
|
|
|
{{ .name }}
|
|
|
|
|
|
</button>
|
2025-07-30 00:35:15 +02:00
|
|
|
|
</li>
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
</ul>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<!-- Inhalte (ohne fade, damit kein Flackern) -->
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="tab-content mission-tab-content">
|
2025-07-30 00:35:15 +02:00
|
|
|
|
{{ range $index, $elements := .tabs }}
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<div class="tab-pane {{ if eq $index 0 }}active{{ end }}"
|
2025-08-11 18:55:52 +02:00
|
|
|
|
id="content-{{ .name | urlize }}"
|
2025-08-12 00:46:57 +02:00
|
|
|
|
role="tabpanel">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="tab-inner">
|
|
|
|
|
|
{{ .content | $.Page.RenderString (dict "display" "block") }}
|
|
|
|
|
|
</div>
|
2025-07-30 00:35:15 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-08-12 00:46:57 +02:00
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
</div>
|
2025-06-06 18:12:46 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-08-12 00:46:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Was uns auszeichnet -->
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<section class="section" style="background-color:#ffffff;">
|
|
|
|
|
|
<div class="my-container">
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
<div class="text-center" data-aos="fade-up" data-aos-delay="50">
|
|
|
|
|
|
<h1>Was uns auszeichnet</h1>
|
|
|
|
|
|
<h2><em>AMPERION liefert echte Mehrwerte für Ihr Projekt.</em></h2>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
</div>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
</div>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<div class="why-grid mt-5" style="
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
|
|
|
|
gap: 2rem;
|
|
|
|
|
|
justify-items: center;
|
|
|
|
|
|
">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
{{ $delay := 0 }}
|
|
|
|
|
|
{{ $step := 100 }}
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<article class="service-card text-center" data-aos="zoom-in" data-aos-delay="{{ $delay = add $delay $step }}">
|
2025-08-12 11:05:32 +02:00
|
|
|
|
<img src="/icons/stamp.svg" alt="Staatlich geprüft" class="service-icon mb-3" style="filter: invert(74%) sepia(39%) saturate(2198%) hue-rotate(344deg) brightness(101%) contrast(92%);">
|
|
|
|
|
|
<h3 class="service-card-title">Staatlich geprüft & konessioniert</h3>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<p class="service-card-description">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<strong>Ingenieurbüro und Elektrotechnikbetrieb –</strong> Planung und Prüfung mit Qualität & Sicherheit.
|
2025-08-11 18:55:52 +02:00
|
|
|
|
</p>
|
|
|
|
|
|
</article>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<article class="service-card text-center" data-aos="zoom-in" data-aos-delay="{{ $delay = add $delay $step }}">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<img src="/icons/brain.svg" alt="Erfahrung & Innovation" class="service-icon mb-3" style="filter: invert(57%) sepia(94%) saturate(602%) hue-rotate(359deg) brightness(101%) contrast(103%);">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<h3 class="service-card-title">Erfahrung & Innovation</h3>
|
|
|
|
|
|
<p class="service-card-description">
|
|
|
|
|
|
<strong>Über 10 Jahre Praxis –</strong> kombiniert mit modernen Methoden und Tools.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
|
|
|
|
<article class="service-card text-center" data-aos="zoom-in" data-aos-delay="{{ $delay = add $delay $step }}">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<img src="/icons/earth.svg" alt="Ganzheitlicher Ansatz" class="service-icon mb-3" style="filter: invert(57%) sepia(94%) saturate(602%) hue-rotate(359deg) brightness(101%) contrast(103%);">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<h3 class="service-card-title">Ganzheitlicher Ansatz</h3>
|
|
|
|
|
|
<p class="service-card-description">
|
|
|
|
|
|
<strong>Technik, Wirtschaft & Umwelt –</strong> von Beginn an zukunftssicher gedacht.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
|
|
|
|
<article class="service-card text-center" data-aos="zoom-in" data-aos-delay="{{ $delay = add $delay $step }}">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<img src="/icons/briefcase-business.svg" alt="Unabhängige Beratung" class="service-icon mb-3" style="filter: invert(57%) sepia(94%) saturate(602%) hue-rotate(359deg) brightness(101%) contrast(103%);">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<h3 class="service-card-title">Unabhängige Beratung</h3>
|
|
|
|
|
|
<p class="service-card-description">
|
|
|
|
|
|
<strong>Herstellerneutral –</strong> wir empfehlen, was zu Ihrem Projekt wirklich passt.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</article>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-08-04 19:03:47 +02:00
|
|
|
|
</section>
|
2025-06-06 18:12:46 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
|
2025-08-12 00:46:57 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<!-- Team Section (grau, konsistent) -->
|
2025-07-29 19:10:33 +02:00
|
|
|
|
{{ with .Params.about }}
|
|
|
|
|
|
{{ if .enable }}
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<section class="section" style="background-color:#f3f3f3;">
|
|
|
|
|
|
<div class="my-container">
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<!-- Header -->
|
|
|
|
|
|
<div class="text-center mb-5" data-aos="fade-up">
|
|
|
|
|
|
<h1>Das AMPERION Gründerteam</h1>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
|
|
|
|
|
<div class="row gx-5 gy-5 align-items-center">
|
2025-08-11 18:55:52 +02:00
|
|
|
|
|
|
|
|
|
|
<!-- Markus Wimmer -->
|
|
|
|
|
|
<div class="col-lg-4 col-md-12 order-lg-1 order-2" data-aos="fade-right" data-aos-delay="100">
|
|
|
|
|
|
<div class="founder-card">
|
2025-07-29 19:10:33 +02:00
|
|
|
|
{{ with .left_person }}
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<h4 class="founder-name">{{ .name | markdownify }}</h4>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="founder-description">
|
|
|
|
|
|
{{ .description | $.Page.RenderString (dict "display" "block") }}
|
|
|
|
|
|
</div>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
{{ end }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<!-- Team Bild -->
|
|
|
|
|
|
<div class="col-lg-4 col-md-12 order-lg-2 order-1" data-aos="zoom-in" data-aos-delay="200">
|
|
|
|
|
|
<div class="team-image-wrapper">
|
|
|
|
|
|
<img src="{{ .image | relURL }}"
|
|
|
|
|
|
alt="AMPERION Gründerteam"
|
|
|
|
|
|
class="team-image w-100 rounded-3 shadow-sm">
|
|
|
|
|
|
</div>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<!-- Alexander Stosic -->
|
|
|
|
|
|
<div class="col-lg-4 col-md-12 order-lg-3 order-3" data-aos="fade-left" data-aos-delay="300">
|
|
|
|
|
|
<div class="founder-card">
|
2025-07-29 19:10:33 +02:00
|
|
|
|
{{ with .right_person }}
|
2025-08-12 00:46:57 +02:00
|
|
|
|
<h4 class="founder-name">{{ .name | markdownify }}</h4>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<div class="founder-description">
|
|
|
|
|
|
{{ .description | $.Page.RenderString (dict "display" "block") }}
|
|
|
|
|
|
</div>
|
2025-07-29 19:10:33 +02:00
|
|
|
|
{{ end }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
2025-08-11 18:55:52 +02:00
|
|
|
|
|
|
|
|
|
|
<!-- CTA unverändert lassen (wie auf Startseite) -->
|
|
|
|
|
|
{{ $impressum := site.GetPage "page" "impressum" }}
|
2025-06-06 18:12:46 +02:00
|
|
|
|
{{ if .Params.cta.enable }}
|
2025-08-11 18:55:52 +02:00
|
|
|
|
<section id="cta" class="cta">
|
|
|
|
|
|
<div class="cta__bg" aria-hidden="true">
|
|
|
|
|
|
<div class="cta__grid"></div>
|
|
|
|
|
|
<div class="cta__energy-lines">
|
|
|
|
|
|
<div class="energy-line-h energy-line-h1"></div>
|
|
|
|
|
|
<div class="energy-line-h energy-line-h2"></div>
|
|
|
|
|
|
<div class="energy-line-h energy-line-h3"></div>
|
|
|
|
|
|
<div class="energy-line-h energy-line-h4"></div>
|
|
|
|
|
|
<div class="energy-line-v energy-line-v1"></div>
|
|
|
|
|
|
<div class="energy-line-v energy-line-v2"></div>
|
|
|
|
|
|
<div class="energy-line-v energy-line-v3"></div>
|
|
|
|
|
|
<div class="energy-line-v energy-line-v4"></div>
|
|
|
|
|
|
<div class="energy-node energy-node1"></div>
|
|
|
|
|
|
<div class="energy-node energy-node2"></div>
|
|
|
|
|
|
<div class="energy-node energy-node3"></div>
|
|
|
|
|
|
<div class="energy-node energy-node4"></div>
|
|
|
|
|
|
<div class="energy-node energy-node5"></div>
|
|
|
|
|
|
<div class="energy-node energy-node6"></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="cta__gradient-top"></div>
|
|
|
|
|
|
<div class="cta__gradient-bottom"></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="my-container">
|
|
|
|
|
|
<div class="cta__wrap">
|
|
|
|
|
|
<h2 class="cta__title">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
Mehr Energie - Mit UNS!
|
2025-08-11 18:55:52 +02:00
|
|
|
|
</h2>
|
|
|
|
|
|
<p class="cta__lead">
|
2025-08-12 00:46:57 +02:00
|
|
|
|
Ihr Weg zu nachhaltiger Energie beginnt hier.
|
|
|
|
|
|
<span class="cta__accent">Lassen Sie uns starten!</span>
|
2025-08-11 18:55:52 +02:00
|
|
|
|
</p>
|
|
|
|
|
|
<div class="cta__actions">
|
|
|
|
|
|
<a class="cta__btn" href="mailto:{{ $impressum.Params.email }}">
|
|
|
|
|
|
<span aria-hidden="true">✉️</span><span>E-Mail senden</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a class="cta__btn" href="tel:{{ $impressum.Params.telefon }}">
|
|
|
|
|
|
<span aria-hidden="true">📞</span><span>Anrufen</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="cta__social">
|
|
|
|
|
|
<a class="cta__social-link" href="https://www.instagram.com/amperion.at/" target="_blank" rel="noopener" aria-label="Instagram">
|
|
|
|
|
|
<img src="/images/social/instagram.svg" alt="">
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a class="cta__social-link" href="https://www.linkedin.com/company/amperion-gmbh/" target="_blank" rel="noopener" aria-label="LinkedIn">
|
|
|
|
|
|
<img src="/images/social/linkedin.svg" alt="">
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a class="cta__social-link" href="https://www.facebook.com/share/1CZ7xm6cdw/?mibextid=wwXIfr" target="_blank" rel="noopener" aria-label="Facebook">
|
|
|
|
|
|
<img src="/images/social/facebook.svg" alt="">
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
2025-06-06 18:12:46 +02:00
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
2025-08-04 19:03:47 +02:00
|
|
|
|
{{ end }}
|