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

index.html « layouts « exampleSite - github.com/gohugoio/hugo-mod-bootstrap-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 516b416f21b885e53bff20e054eff74306439f4f (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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>
      {{ .Title }}
    </title>
    {{/* styles */}}
    {{ $options := dict "enableSourceMap" true }}
    {{ if hugo.IsProduction}}
      {{ $options := dict "enableSourceMap" false "outputStyle" "compressed" }}
    {{ end }}
    {{ $styles := resources.Get "scss/styles.scss" }}
    {{ $styles = $styles | resources.ToCSS $options }}
    {{ if hugo.IsProduction }}
      {{ $styles = $styles | fingerprint }}
    {{ end }}
    <link href="{{ $styles.RelPermalink }}" rel="stylesheet" />
  </head>
  <body>
    <div class="container mt-5">
        <div class="row">
            <div class="col-sm-4">
                <h3>Column 1</h3>
                <p>Lorem ipsum dolor..</p>
            </div>
            <div class="col-sm-4">
                <h3>Column 2</h3>
                <p>Lorem ipsum dolor..</p>
            </div>
            <div class="col-sm-4">
                <h3>Column 3</h3>
                <p>Lorem ipsum dolor..</p>
            </div>
        </div>
    </div>
  </body>
</html>