initial commit

This commit is contained in:
2023-08-15 17:02:21 +02:00
commit 2c3e91dae4
653 changed files with 103970 additions and 0 deletions

0
layouts/404.html Normal file
View File

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
{{ partial "head.html" . }}
<body>
{{ partial "navbar.html" . }}
<div id="content">
{{ block "main" . }}{{ end }}
</div>
{{ partial "footer.html" . }}
</body>
</html>

View File

View File

View File

@ -0,0 +1,59 @@
{{ define "main" }}
{{ partial "head.html" . }}
{{ $baseurl := .Site.BaseURL }}
<header class="breadCrumb">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h3 class="breadCrumb__title">{{ .Title }}</h3>
<nav aria-label="breadcrumb" class="d-flex justify-content-center">
<ol class="breadcrumb align-items-center">
<li class="breadcrumb-item"><a href="{{ .Site.BaseURL }}">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li>
</ol>
</nav>
</div>
</div>
<div class="row">
<div class="col-12 text-center">
<section class="section blog-page">
<div class="container">
{{ $plural := .Data.Plural }}
{{ range $key, $value := .Data.Terms }}
<a href="{{ $baseurl }}/{{ $plural }}/{{ $key }}">{{ $key }}</a>
<br>
{{ end }}
</div>
</section>
</div>
</div>
</div>
</header>
<section class="section singleBlog">
<div class="svg-img">
<img src={{ "images/hero/figure-svg.svg" | absURL }} alt="">
</div>
<div class="animate-shape">
<img src={{ "images/skill/skill-background-shape.svg" | absURL }} alt="">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
<defs>
<linearGradient id="d" x1="0.929" y1="0.111" x2="0.263" y2="0.935" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#d)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="animate-pattern">
<img src={{ "images/service/background-pattern.svg" | absURL }} alt="background-shape">
</div>
</section>
{{ end }}

63
layouts/blog/list.html Normal file
View File

@ -0,0 +1,63 @@
{{ define "main" }}
<header class="breadCrumb">
<div class="svg-img">
<img src={{"images/hero/figure-svg.svg" | absURL }} alt="">
</div>
<div class="animate-shape">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
<defs>
<linearGradient id="d" x1="0.929" y1="0.111" x2="0.263" y2="0.935" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#d)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="animate-pattern">
<img src={{"images/service/background-pattern.svg" | absURL }} alt="background-shape">
</div>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h3 class="breadCrumb__title">{{ .Title }}</h3>
<nav aria-label="breadcrumb" class="d-flex justify-content-center">
<ol class="breadcrumb align-items-center">
<li class="breadcrumb-item"><a href="{{ .Site.BaseURL }}">Startseite</a></li>
<li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li>
</ol>
</nav>
</div>
</div>
</div>
</header>
<section class="section blog-page">
<div class="container">
<div class="row">
{{ range .Paginator.Pages }}
<div class="col-lg-4">
<div class="blog-page__item">
<div class="blog-page__item-thumb">
<img src="{{ .Params.featureImage | absURL }}" alt="post-image">
</div>
<div class="blog-page__item-content bg-white">
<span class="small">{{ .PublishDate.Format "January 2, 2006" }}</span>
<h5 class="mb-0">
<a class="text-dark" href="{{ .Permalink }}">{{ .Title }}</a>
</h5>
</div>
</div>
</div>
{{ end }}
{{ partial "pagination" .}}
</div>
</div>
</section>
{{ end }}

96
layouts/blog/single.html Normal file
View File

@ -0,0 +1,96 @@
{{ define "main" }}
<header class="breadCrumb">
<div class="container">
<div class="row">
<div class="col-lg-10 col-md-12 offset-lg-1 offset-md-0 text-center">
<h3 class="breadCrumb__title">{{ .Title }}</h3>
<nav aria-label="breadcrumb" class="d-flex justify-content-center">
<ol class="breadcrumb align-items-center">
<li class="breadcrumb-item"><a href={{ .Site.BaseURL }}>Home</a></li>
<li class="breadcrumb-item"><a href={{ .Site.Params.blogPageURL | absURL }}>All Post</a></li>
<li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li>
</ol>
</nav>
</div>
</div>
<ul class="post-meta">
<li>
<i class="fa fa-calendar"></i>
{{ .PublishDate.Format "January 2, 2006" }}
</li>
<li>
<i class="fa fa-clock-o"></i>
{{ .ReadingTime }} mins read
</li>
{{ if .Params.tags }}
<li>
<i class="fa fa-tag"></i>
{{ range (.GetTerms "tags") }}
<a class="text-capitalize" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
{{ end }}
</li>
{{ end }}
{{ if .Params.categories }}
<li>
<i class="fa fa-folder-open"></i>
{{ range (.GetTerms "categories") }}
<a class="text-capitalize" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
{{ end }}
</li>
{{ end }}
</ul>
</div>
</div>
</div>
</div>
</header>
<section class="section singleBlog">
<div class="svg-img">
<img src={{ "images/hero/figure-svg.svg" | absURL }} alt="">
</div>
<div class="animate-shape">
<img src={{ "images/skill/skill-background-shape.svg" | absURL }} alt="">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
<defs>
<linearGradient id="d" x1="0.929" y1="0.111" x2="0.263" y2="0.935" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#d)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="animate-pattern">
<img src={{ "images/service/background-pattern.svg" | absURL }} alt="background-shape">
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="singleBlog__feature">
<img src={{ .Params.postImage | absURL }} alt="feature-image">
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-12">
<div class="singleBlog__content">
{{ if .Params.toc }}
<h3>Table of Contents</h3>
{{ .TableOfContents | replaceRE "<ul>[[:space:]]*<li>[[:space:]]*<ul>" "<ul>" | replaceRE "</ul>[[:space:]]*</li>[[:space:]]*</ul>" "</ul>" | safeHTML }}
{{ end }}
{{ .Content }}
</div>
</div>
</div>
</div>
</section>
{{ end }}

View File

@ -0,0 +1,76 @@
{{ define "main" }}
<header class="breadCrumb">
<div class="svg-img">
<img src={{"images/hero/figure-svg.svg" | absURL }} alt="">
</div>
<div class="animate-shape">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 600 600"
>
<defs>
<linearGradient
id="d"
x1="0.929"
y1="0.111"
x2="0.263"
y2="0.935"
gradientUnits="objectBoundingBox"
>
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path
class="blob"
fill="url(#d)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z"
/>
</g>
</svg>
</div>
<div class="animate-pattern">
<img src={{"images/service/background-pattern.svg" | absURL }}
alt="background-shape">
</div>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h3 class="breadCrumb__title text-capitalize">{{ .Title }}</h3>
<nav aria-label="breadcrumb" class="d-flex justify-content-center">
<ol class="breadcrumb align-items-center">
<li>Showing all posts with the category "{{.Title}}"</li>
</ol>
</nav>
</div>
</div>
</div>
</header>
<section class="section blog-page">
<div class="container">
<div class="row">
{{ range .Paginator.Pages }}
<div class="col-lg-4">
<div class="blog-page__item">
<div class="blog-page__item-thumb">
<img src="{{ .Params.featureImage | absURL }}" alt="post-image" />
</div>
<div class="blog-page__item-content bg-white">
<span class="small"
>{{ .PublishDate.Format "January 2, 2006" }}</span
>
<h5 class="mb-0">
<a class="text-dark" href="{{ .Permalink }}">{{ .Title }}</a>
</h5>
</div>
</div>
</div>
{{ end }} {{ partial "pagination" .}}
</div>
</div>
</section>
{{ end }}

13
layouts/index.html Normal file
View File

@ -0,0 +1,13 @@
{{ define "main" }}
{{ partial "hero.html" . }}
{{ partial "aboutSection.html" . }}
{{ partial "programm" . }}
{{ partial "testimonialSection.html" . }}
{{ partial "blogSection.html" . }}
{{ end }}

View File

@ -0,0 +1,52 @@
{{ with .Site.Data.aboutSection }}
{{ if .enable }}
<section class="section about" id="about">
<div class="container">
<div class="row text-center">
<div class="col-lg-6 offset-lg-3">
<div class="about_header mb-5">
<span class="top-title">{{ .topTitle }}</span>
{{ .title | markdownify}}
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="about_content">
<div class="about_content-thumb">
<div class="about-svg">
<img src="images/hero/figure-svg.svg" alt="figure-svg">
</div>
<div class="about_content-thumb-image">
<img src="{{ .image | absURL }}" alt="about-img"
style='-webkit-mask: url({{"images/about/about-mask-svg.svg" | absURL}}); -webkit-mask-size: cover;'>
</div>
</div>
<div class="about_content-inner">
<div class="about_content-inner-blob">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 600 600">
<defs>
<linearGradient id="c" x1="0.929" y1="0.111" x2="0.263" y2="0.935"
gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#c)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="mb-4 text-light">
{{ .content | markdownify}}
</div>
</div>
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}

View File

@ -0,0 +1,49 @@
{{ with .Site.Data.blogSection }}
{{ if .enable }}
<section class="section blog-preview" id="blog">
<div class="blog-preview__shape">
<img src="images/blog/blog-shape.svg" alt="blog shape" />
</div>
<div class="container">
<div class="row mb-5">
<div class="col-lg-6">
<div class="blog-preview__header">
<span class="top-title pre-line">{{ .topTitle }}</span>
{{ .title | markdownify }}
</div>
</div>
<div class="col-lg-6">
<div class="blog-preview__header_button desktop">
<a class="btn btn-outline-secondary btn-zoom m-3" href="{{ .buttonTarget | absURL }}">Alle Beiträge</a>
</div>
</div>
</div>
<div class="row">
{{ range first 3 (where $.Site.RegularPages "Type" "!=" "portfolio") }}
<div class="col-lg-4">
<div class="blog-preview__item">
<div class="blog-preview__item-thumb">
<img src="{{ .Params.featureImage | absURL }}" alt="post-image">
</div>
<div class="blog-preview__item-content bg-white">
<span class="small">{{ .PublishDate.Format "January 2, 2006" }}</span>
<h5 class="mb-0">
<a class="text-dark" href="{{ .Permalink }}">{{ .Title }}</a>
</h5>
</div>
</div>
</div>
{{ end }}
</div>
<div class="row">
<div class="col-lg-12">
<div class="blog-preview__header_button mobile">
<a class="btn btn-outline-secondary btn-zoom" href="{{ .buttonTarget | absURL }}">Alle Beiträge</a>
</div>
</div>
</div>
</div>
</section>
{{ end }} {{ end }}

View File

@ -0,0 +1,68 @@
<section class="footer" id="contact">
<div class="footer__background_shape">
<svg viewBox="0 0 1920 79">
<path d="M0 0h1920v79L0 0z" data-name="Path 1450" />
</svg>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="footer__cta">
<div class="shape-1">
<svg xmlns="http://www.w3.org/2000/svg" width="357" height="315.029" viewBox="0 0 357 315.029">
<path data-name="Path 1449"
d="M76.1-157.222C91.746-135.8 87.2-94.273 99.993-61.945c12.7 32.328 42.661 55.459 39.248 73.282-3.318 17.823-40.007 30.337-65.6 43.325-25.5 12.988-39.912 26.545-60.01 42.566-20.1 16.116-46.074 34.6-63.328 27.682-17.349-6.921-25.976-39.153-59.915-59.82s-93.1-29.768-105.325-51.478 22.373-56.028 43.609-93.949c21.331-37.921 29.2-79.35 53.563-96.793 24.459-17.444 65.414-10.9 103.9-6.921 38.396 3.982 74.326 5.404 89.965 26.829z"
transform="translate(217.489 188.626)" />
</svg>
</div>
<div class="shape-2">
<svg xmlns="http://www.w3.org/2000/svg" width="357" height="315.029" viewBox="0 0 357 315.029">
<path data-name="Path 1449"
d="M76.1-157.222C91.746-135.8 87.2-94.273 99.993-61.945c12.7 32.328 42.661 55.459 39.248 73.282-3.318 17.823-40.007 30.337-65.6 43.325-25.5 12.988-39.912 26.545-60.01 42.566-20.1 16.116-46.074 34.6-63.328 27.682-17.349-6.921-25.976-39.153-59.915-59.82s-93.1-29.768-105.325-51.478 22.373-56.028 43.609-93.949c21.331-37.921 29.2-79.35 53.563-96.793 24.459-17.444 65.414-10.9 103.9-6.921 38.396 3.982 74.326 5.404 89.965 26.829z"
transform="translate(217.489 188.626)" />
</svg>
</div>
<div class="text-light footer__cta_content">
<span>Du willst uns unterstützen?</span>
<h2 class="mb-0">Mach mit bei unserer Video-Aktion!</h2>
</div>
<div class="footer__cta_action">
<a class="btn btn-light btn-zoom" href="{{ .Site.Params.contactLink | absURL }}">Anleitung</a>
</div>
</div>
</div>
</div>
<div class="row footer__footer">
<div class="col-lg-6">
<div class="footer__footer_copy text-light">
<p>Copyright {{ dateFormat "2006" now }} - Lilli Berthold & Denys Konovalov | Theme by <a class="text-light" href="https://staticmania.com/" target="_blank">StaticMania</a></p>
</div>
</div>
<div class="col-lg-6">
<div class="footer__footer_social">
<ul class="unstyle-list">
{{ $social := .Site.Params.social }}
{{ range $social }}
<li class="d-inline-block mx-2"><a class="text-light" target="_blank" href="{{ .url }}"><i
class="fa {{ .icon }}"></i></a>
</li>
{{ end }}
</ul>
</div>
</div>
</div>
</div>
</section>
<script src="https://maps.googleapis.com/maps/api/js?key={{ .Site.Params.map.APIkey }}&libraries=geometry"></script>
<script src="{{ "plugins/jQuery/jquery.min.js" | absURL }}"></script>
<script src="{{ "plugins/bootstrap/bootstrap.min.js" | absURL }}"></script>
<script src="{{ "plugins/slick/slick.min.js" | absURL }}"></script>
<script src="{{ "plugins/waypoint/jquery.waypoints.min.js" | absURL }}"></script>
<script src="{{ "plugins/magnafic-popup/jquery.magnific-popup.min.js" | absURL }}"></script>
<script src="{{ "plugins/tweenmax/TweenMax.min.js" | absURL }}"></script>
<script src="{{ "plugins/imagesloaded/imagesloaded.min.js" | absURL }}"></script>
<script src="{{ "plugins/masonry/masonry.min.js" | absURL }}"></script>
<!-- {{ $formhandler := resources.Get "js/form-handler.js" | minify }}
<script src="{{ $formhandler.Permalink }}"></script> -->
{{ $script := resources.Get "js/script.js" | minify }}
<script src="{{ $script.Permalink }}"></script>

View File

@ -0,0 +1,36 @@
<head>
<meta charset="utf-8" />
<title>{{ .Title }}</title>
{{ "<!-- mobile responsive meta -->" | safeHTML }}
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
{{ "<!-- Slick Carousel -->" | safeHTML }}
<link rel="stylesheet" href="{{ "plugins/slick/slick.css" | absURL }}" />
<link rel="stylesheet" href="{{ "plugins/slick/slick-theme.css" | absURL }}" />
{{ "<!-- Font Awesome -->" | safeHTML }}
<link rel="stylesheet" href="{{ "plugins/font-awesome/css/font-awesome.min.css" | absURL }}" />
{{ "<!-- Magnific Popup -->" | safeHTML }}
<link rel="stylesheet" href="{{"plugins/magnafic-popup/magnific-popup.css" | absURL }}" />
{{ "<!-- Stylesheets -->" | safeHTML }}
{{ $style := resources.Get "scss/style.scss" | resources.ToCSS | minify }}
<link href="{{ $style.Permalink }}" rel="stylesheet" />
{{ "<!--Favicon-->" | safeHTML }}
<link rel="shortcut icon" href="{{ "images/favicon.ico" | absURL }}" type="image/x-icon" />
<link rel="icon" href="{{ "images/favicon.png" | absURL }}" type="image/x-icon" />
{{ with site.Params.googleAnalytics }}
{{ "<!-- Google Analytics -->" | safeHTML }}
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', '{{ . }}');
</script>
{{ end }}
</head>

View File

@ -0,0 +1,70 @@
{{ with .Site.Data.hero }}
{{ if .enable }}
<section class="hero" id="home">
<div class="hero_background-svg">
<svg viewBox="0 0 1437 1180">
<path fill="#f1f6f9" d="M0 0h1377l60 1010a120 120 0 01-120 120L0 1180z" data-name="Path 1350" />
</svg>
</div>
<div class="hero_footer-svg">
<img src="images/hero/figure-svg.svg" alt="" />
</div>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="hero_content">
<div class="hero_blob">
<svg viewBox="0 0 550 550">
<defs>
<linearGradient id="a" x1=".069" x2=".753" y1=".116" y2=".858" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff" />
<stop offset="1" stop-color="#fff" stop-opacity=".012" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#a)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="mb-5">
<span class="top-title pre-line">{{ .topTitle }}</span>
{{ .content | markdownify }}
</div>
<a type="button" class="btn btn-lg btn-primary btn-zoom"
href="{{ .buttonURL | absURL }}">{{ .buttonName }}</a>
</div>
</div>
<div class="col-lg-6">
<div class="hero_figure">
<div class="figure-svg">
<img src="images/hero/figure-svg.svg" alt="figure-svg" />
</div>
<!--img src="{{ .image | absURL }}" alt="hero-image" style='
-webkit-mask: url({{"images/hero/hero-mask-svg.png" | absURL }});
-webkit-mask-repeat: no-repeat;
-webkit-mask-size: contain;
-webkit-mask-position: center center;
' /-->
{{ if .videoURL }}
<div class="hero_figure-popup">
<div class="thumb">
<img src="{{ .videoThumb }}" alt="popup" style='-webkit-mask: url({{"images/about/about-mask-svg.svg" | absURL}}); -webkit-mask-size: cover;'/>
</div>
<a href="{{ .videoURL }}" type="button" class="popup-button text-center big">
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="24" viewBox="0 0 21 24">
<path d="M17.961 10.264a2 2 0 010 3.473L2.992 22.29A2 2 0 010 20.554V3.446A2 2 0 012.992 1.71z"
data-name="Polygon 4" />
</svg>
</a>
</div>
{{ end }}
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}

View File

@ -0,0 +1,27 @@
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<!--a href="{{ .Site.BaseURL }}" class="navbar-brand">
<img src="{{ .Site.Params.logo | absURL }}" alt="site-logo">
</a-->
<button type="button" class="navbar-toggler collapsed" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navbarCollapse">
<ul class="nav navbar-nav main-navigation my-0 mx-auto">
{{ $menu := .Site.Menus.main }}
{{ range $index, $element := $menu }}
<li class="nav-item">
<a href="{{ $.Site.BaseURL }}{{ .URL }}"
class="nav-link text-dark text-sm-center p-2 {{ if $.IsHome }}scroll{{ end }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
<!--div class="navbar-nav">
<a href="{{ "contact" | absURL }}" class="btn btn-primary btn-zoom hire_button">Hire Me Now</a>
</div-->
</div>
</div>
</nav>

View File

@ -0,0 +1,27 @@
{{ $pag := $.Paginator }}
{{ if gt $pag.TotalPages 1 }}
<nav aria-label="Page navigation" class="w-100">
<ul class="pagination justify-content-center pagination-lg">
{{ range $pag.Pagers }}
{{ if eq . $pag }}
<li class="page-item active">
<a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a>
</li>
{{ else }}
<li class="page-item">
<a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a>
</li>
{{ end }}
{{ end }}
{{ if $pag.HasNext }}
<li class="page-item">
<a class="page-link" href="{{ $pag.Next.URL }}" rel="next">
</a>
</li>
{{ end }}
</ul>
<!-- </nav> -->
</nav>
{{ end }}

View File

@ -0,0 +1,73 @@
{{ with .Site.Data.programm }}
{{ range $id, $el := .sections }}
{{if (not (modBool $id 2)) }}
<section class="section service" id="{{.title | urlize}}">
<div class="service__background">
<svg viewBox="0 0 1283 1126">
<path fill="#f1f6f9" d="M100 0h1183v1126l-1183-80A100 100 0 010 946V100A100 100 0 01100 0z"
data-name="Path 1369" />
</svg>
</div>
<div class="service__background_shape">
<svg viewBox="0 0 550 550">
<defs>
<linearGradient id="b" x1="0.209" y1="0.085" x2="1.071" y2="1.164" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#b)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="service__background_pattern">
<img src="images/service/background-pattern.svg" alt="background-pattern">
</div>
<div class="container">
<div class="row">
<div class="col-lg-10 col-md-12 col-sm-12">
<div class="service__header mb-5">
<span class="top-title pre-line">{{ $el.title }}</span>
{{ $el.content | markdownify }}
</div>
</div>
</div>
</div>
</section>
{{ else }}
<section class="section resume" id="{{.title | urlize}}">
<div class="resume__background"></div>
<div class="skill__background_shape">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
<defs>
<linearGradient id="d" x1="0.929" y1="0.111" x2="0.263" y2="0.935" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#d)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="container">
<div class="row justify-content-end">
<div class="col-lg-10">
<div class="resume__heading">
<div class="text-light">
<span class="top-title pre-line">{{ $el.title }}</span>
{{ $el.content | markdownify }}
</div>
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}
{{ end }}

View File

@ -0,0 +1,19 @@
{{ with .Site.Data.resumeSection }}
{{ if .enable }}
<section class="section resume" id="resume">
<div class="resume__background"></div>
<div class="container">
<div class="row justify-content-end">
<div class="col-lg-8">
<div class="resume__heading">
<div class="text-light">
<span class="top-title pre-line">{{ .topTitle }}</span>
{{ .title | markdownify }}
</div>
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}

View File

@ -0,0 +1,41 @@
{{ with .Site.Data.serviceSection }}
{{ if .enable }}
<section class="section service" id="service">
<div class="service__background">
<svg viewBox="0 0 1283 1126">
<path fill="#f1f6f9" d="M100 0h1183v1126l-1183-80A100 100 0 010 946V100A100 100 0 01100 0z"
data-name="Path 1369" />
</svg>
</div>
<div class="service__background_shape">
<svg viewBox="0 0 550 550">
<defs>
<linearGradient id="b" x1="0.209" y1="0.085" x2="1.071" y2="1.164" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#b)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="service__background_pattern">
<img src="images/service/background-pattern.svg" alt="background-pattern">
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-12 col-sm-12">
<div class="service__header mb-5">
<span class="top-title pre-line">{{ .topTitle }}</span>
{{ .title | markdownify }}
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}

View File

@ -0,0 +1,61 @@
{{ with .Site.Data.skillSection }}
{{ if .enable }}
<section class="section skill", id="skills">
<div class="skill__background_shape">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
<defs>
<linearGradient id="d" x1="0.929" y1="0.111" x2="0.263" y2="0.935" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path class="blob" fill="url(#d)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z" />
</g>
</svg>
</div>
<div class="skill__background_pattern">
<img src="images/service/background-pattern.svg" alt="background-shape">
</div>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="skill__thumb">
<div class="skill__thumb_pattern">
<img src="images/hero/figure-svg.svg" alt="figure-svg">
</div>
<div class="skill__thumb_image">
<img src="{{ .image | absURL }}" alt="skill-img" style='
-webkit-mask: url({{"images/skill/skill-mask-svg.svg" | absURL}});
-webkit-mask-repeat: no-repeat;
-webkit-mask-size: contain;
-webkit-mask-position: center center;
'>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="skill__progress">
<div class="skill__progress_heading mb-5">
<span class="top-title pre-line">{{ .topTitle }}</span>
{{ .content | markdownify }}
</div>
{{ $section := .skill }}
{{ range $section }}
<div class="skill__progress_item">
<span class="d-inline-block text-dark"> {{ .title }} </span>
<div class="progress-value float-right"><span>{{ .percent }}</span>%</div>
<div class="progress">
<div class="progress-bar" style="width:{{ .percent }}%;" aria-valuemin="0"
aria-valuemax="{{ .percent }}"></div>
</div>
</div>
{{ end }}
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}

View File

@ -0,0 +1,47 @@
{{ with .Site.Data.testimonialSection }}
{{ if .enable }}
<section class="section testimonial">
<div class="testimonial__background_shape">
<svg viewBox="0 0 1920 79">
<path d="M0 0h1920v79L0 0z" data-name="Path 1450" />
</svg>
</div>
<div class="container">
<div class="row text-center">
<div class="col-lg-6 offset-lg-3">
<div class="testimonial__header">
<span class="top-title">{{ .topTitle }}</span>
{{ .title | markdownify }}
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="testimonial__slider">
{{ $section := .testimonial }}
{{ range $section }}
<div class="testimonial__slider_item">
{{ if .star }}
<ul class="testimonial__slider_item-rating">
{{ $rating := .star | int }}
{{ $rating := sub $rating 1 }}
{{ range $i, $sequence := (seq 5) }}
{{ if le $i $rating }}
<li><i class="fa fa-star"></i></li>
{{ else }}
<li><i class="fa fa-star inactive"></i></li>
{{ end }}
{{ end }}
</ul>
{{ end }}
<p class="testimonial__slider_item-content"> {{ .comment | markdownify }} </p>
<p class="testimonial__slider_item-author"><span>{{ .name }}</span> | {{ .time }}</p>
</div>
{{ end }}
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}

View File

@ -0,0 +1,7 @@
<div class="blog-section">
<h3>{{ .Get "title" }}</h3>
<img src="{{ .Get "image" | absURL}}" alt="blog-img">
<p>
{{ .Inner }}
</p>
</div>

View File

@ -0,0 +1,76 @@
{{ define "main" }}
<header class="breadCrumb">
<div class="svg-img">
<img src={{"images/hero/figure-svg.svg" | absURL }} alt="">
</div>
<div class="animate-shape">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 600 600"
>
<defs>
<linearGradient
id="d"
x1="0.929"
y1="0.111"
x2="0.263"
y2="0.935"
gradientUnits="objectBoundingBox"
>
<stop offset="0" stop-color="#f1f6f9" />
<stop offset="1" stop-color="#f1f6f9" stop-opacity="0" />
</linearGradient>
</defs>
<g data-name="blob-shape (3)">
<path
class="blob"
fill="url(#d)"
d="M455.4 151.1c43.1 36.7 73.4 92.8 60.8 136.3-12.7 43.5-68.1 74.4-111.3 119.4-43.1 45-74 104.1-109.8 109-35.9 5-76.7-44.2-111.8-89.2-35.2-45-64.7-85.8-70.8-132.6-6-46.8 11.6-99.6 46.7-136.3 35.2-36.6 88-57.2 142.4-58.8 54.5-1.7 110.6 15.6 153.8 52.2z"
/>
</g>
</svg>
</div>
<div class="animate-pattern">
<img src={{"images/service/background-pattern.svg" | absURL }}
alt="background-shape">
</div>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h3 class="breadCrumb__title text-capitalize">{{ .Title }}</h3>
<nav aria-label="breadcrumb" class="d-flex justify-content-center">
<ol class="breadcrumb align-items-center">
<li>Showing all posts with the tag "{{.Title}}"</li>
</ol>
</nav>
</div>
</div>
</div>
</header>
<section class="section blog-page">
<div class="container">
<div class="row">
{{ range .Paginator.Pages }}
<div class="col-lg-4">
<div class="blog-page__item">
<div class="blog-page__item-thumb">
<img src="{{ .Params.featureImage | absURL }}" alt="post-image" />
</div>
<div class="blog-page__item-content bg-white">
<span class="small"
>{{ .PublishDate.Format "January 2, 2006" }}</span
>
<h5 class="mb-0">
<a class="text-dark" href="{{ .Permalink }}">{{ .Title }}</a>
</h5>
</div>
</div>
</div>
{{ end }} {{ partial "pagination" .}}
</div>
</div>
</section>
{{ end }}