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

services.html « partials « layouts - github.com/salsysd/hugo-assembly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f1e7891d5aea3b554dd2195ce00e35accab239b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <div id="three-column" class="container">
    {{ with .Site.Params.services }}
    <div class="title">
      <h2>{{ with .title }}</h2>
      <span class="byline">{{ with .subtitle }}</span>
    </div>
    {{ range .item }}
    <div class="box{{ .weight }}">
      <p>{{ .description | markdownify }}</p>
      <a href="#" class="button button-alt">{{ .button_item_info }}</a>
    </div>
    {{ end }}

    {{ end }}
  </div>