Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/serg/yourfolio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r--layouts/partials/header.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..6631073
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,23 @@
+{{$header := .Params.header}}
+<div class="header">
+ <div class="container">
+ <div class="padder">
+ <div class="main-description animated fadeIn">
+ {{- with $header.description -}}
+ <h1 class="break-word">{{- . | safeHTML -}}</h1>
+ {{- end -}}
+ <picture>
+ {{$currentPageContext := .}}
+ {{- with $header.responsive_images -}}
+ {{range $imageWidth, $imageUrl := .}}
+ {{ $currentPageContext.Scratch.Add "srcSetArray" (slice (print ($imageUrl | relURL) " " $imageWidth "w")) }}
+ {{end}}
+ <source media="(max-width: 46.25em)" srcset="{{delimit ($currentPageContext.Scratch.Get "srcSetArray") ", "}}">
+ {{ $currentPageContext.Scratch.Delete "srcSetArray" }}
+ {{- end -}}
+ <img src="{{$header.image | relURL}}" alt="{{$header.image_alt}}">
+ </picture>
+ </div>
+ </div>
+ </div>
+</div> \ No newline at end of file