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: 38f1e58791078c996441bd28332a1bf1f7258b11 (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

    <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 "link" }} &raquo;</a>
      </div>

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

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