hugo-theme-zzo/layouts/partials/header/site-header.html

23 lines
808 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
{{ if .IsHome }}
<header class="header">
{{ if and .Site.Params.homeHeaderType (eq .Site.Params.homeHeaderType "slide") }}
{{ partial "header/header-slide" . }}
{{ else if and .Site.Params.homeHeaderType (eq .Site.Params.homeHeaderType "img") }}
{{ partial "header/header-img" . }}
{{ else if and .Site.Params.homeHeaderType (eq .Site.Params.homeHeaderType "text") }}
{{ partial "header/header-text" . }}
{{ else }}
{{ end }}
2019-11-04 13:09:44 +00:00
</header>
<link rel="stylesheet" href="https://unpkg.com/swiper/css/swiper.min.css">
<script src="https://unpkg.com/swiper/js/swiper.min.js"></script>
<script>
{{ $swiper := .Site.Data.swiper }}
var options = JSON.parse({{ $swiper | jsonify }});
var mySwiper = new Swiper('.swiper-container', options);
</script>
2019-11-04 13:09:44 +00:00
{{ end }}