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

summary.html « partials « layouts - github.com/cowboysmall-tools/hugo-business-frontpage-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a110de1268448b32239d85c9430ccba08b240d5a (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

      <div class="row">

        <div class="col-md-8 mb-5">
          <h2>{{ i18n "about" }}</h2>
          <hr>
          {{ range .Site.Params.summary.description.items }}
          <p>{{ .description }}</p>
          {{ end }}
          <a class="btn btn-primary btn-lg" href="{{ .Site.Params.summary.url }}">{{ i18n "more" }} &raquo;</a>
        </div>

        <div class="col-md-4 mb-5">
          <h2>{{ i18n "contact" }}</h2>
          <hr>
          {{ with .Site.Params.summary.contact }}
          <address>
            <strong>{{ .name }}</strong>
            <br>{{ .address1 }}
            <br>{{ .address2 }}
            <br>
          </address>
          <address>
            <abbr title="Phone">P:</abbr>
            {{ .phone }}
            <br>
            <abbr title="Email">E:</abbr>
            <a href="mailto:{{ .email }}">{{ .email }}</a>
          </address>
          {{ end }}
        </div>

      </div><!-- /.row -->