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

list.html « _default « layouts - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43df083d957facfbf24bece64b99e70a1a1e7345 (plain)
1
2
3
4
5
6
7
8
{{ define "main" }}
{{ range .Pages }}
    <article class="text-gray-700 sm:mx-12 mb-4">
        <h1 class="font-bold font-thin text-3xl text-gray-700"><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
        {{ .Content }}
    </article>
{{ end }}
{{ end }}