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

header-scrolling.html « homepage « partials « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 401d9bbbcec502df67fb160ad87018d2b6b6d447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- NOTE: Must be at root level for firefox to work (cannot wrap in header) -->
<div class="parallax__group">
    <div class="parallax__layer parallax__layer--base">
        {{ partial "homepage/header-logo.html" . }}
    </div>
    <div class="parallax__layer parallax__layer--back {{ if .image }}fullsize-background-image{{ end }}"
        {{ if .image }}
            style="background-image: url('{{ .image }}'); {{ with .image_position }}background-position: {{ . }};{{ end }}"
        {{ else }}
            style="background-color: {{ .color }}"
        {{ end }}
    ></div>
</div>