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

list.html « _default « layouts - github.com/kc0bfv/ticky_tacky_dark.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a49703f4233169548c7a6a447fbd8f5bbfc45960 (plain)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}
    {{ range .Site.RegularPages.ByWeight }}
        <div class="col col-12 col-lg-6 imgbtntxt">
            <a class="imgbtntxt" href="{{ with .Params.actualurl }}{{ . }}{{ else }}{{ .Permalink }}{{ end }}">
                <img class="morerounded" height="300" width="300" src="{{ .Params.buttonimage }}" alt="{{ .Title }}">
                <br>{{ .Title }}
            </a>
        </div>
    {{ end }}
{{ end }}