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

icons-list.html « partials « layouts « docs - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5165dc1bd698b4a0a5be8784c04eac378ab55894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<ul class="row list-unstyled list">
{{- $dirName := "icons" -}}

{{- range (readDir $dirName) -}}
  {{- $filenameWithExt := split .Name "." -}}
  {{- $filename := index $filenameWithExt 0 -}}
  {{- $name := humanize $filename -}}
  <li class="col-4 col-sm-3 col-lg-2 mb-4">
    <div class="p-3 mb-2 border text-center rounded">
      {{ readFile (printf "%s/%s" $dirName .Name) | chomp | safeHTML }}
    </div>
    <div class="name text-muted text-center pt-1">{{ $name }}</div>
  </li>
{{ end -}}
</ul>