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

list.html « _default « layouts - github.com/gonnux/hugo-apps-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66fb9ed6795d67f134c26c59a4fcb54c9e306ed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
  <div class="apps-list">
    {{ range .Pages }}
      <div class="apps-app-item">
        <div class="apps-app-icon">
          <a href="{{ .URL }}">
            {{ $img := default "/img/no-image.svg" .Params.img }}
            <img src="{{ $img }}"/>
          </a>
        </div>
        <div class="apps-app-name">
          <a href="{{ .URL }}">
            <h6>{{- .Title -}}</h6>
          </a>
        </div>
      </div>
    {{ end }}
  </div>
{{ end }}