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

cell.html « homepage « partials « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bca321e7b23c80f8f8545a022449207ba6a11ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<a href="{{ if .disable }}#!{{ else }}{{ .link }}{{ end }}" class="flex-item">
    <div class="cell
        fill-container
        no-padding
        {{ if or .grayscale .disable }}grayscale{{ end }}
        {{ if .disable }}no-change-on-hover{{ end }}
        {{ if .image }}fullsize-background-image{{ end }}
    " style="
        {{ with .image }}
            background-image: url({{ . }});
        {{ else }}
            background-color: {{ .color }};
        {{ end }}

        {{ with .image_position }}
            background-position: {{ . }};
        {{ end }}

        height: {{ with .height }}
            {{ . }}
        {{ else }}
            33.33vh
        {{ end }};
    ">
        <!-- Show text permanently -->
        {{ if eq .always_show_text true }}
            <div class="center-items center-text fill-container black-overlay">
                <h3 class="white-text">{{ .name }}</h3>
            </div>
        {{ end }}

        {{ if not (or (eq .no_highlight true) .disable) }}
            <div class="highlight-block">
                <h3 class="white-text">{{ .name }}</h3>
            </div>
        {{ end }}
    </div>
</a>