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

summary.html « services « layouts - github.com/JugglerX/hugo-hero-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f682163ebc00b22a72f5aef898793a2b6c407237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="service service-summary">
  {{ if .Params.icon }}
  <div class="service-image">
    <img src="{{ .Params.icon | relURL }}"/>
  </div>
  {{ end }}
  <div class="service-content">
    <h2 class="service-title">
      <a href="{{ .Permalink }}">{{ .Title }}</a>
    </h2>
    {{ .Content | truncate 120 "..." }}
  </div>
</div>