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

terms.html « authors « layouts - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e4a9b3f6de7482072e5a48cfeeca8b64db76e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
  {{ partial "components/list-article" . }}
  <div class="bg-secondary-bg rounded px-6 py-8">
    {{ range .Pages }}
      <h2 class="text-primary-text my-2 text-lg">
        <a href="{{ .Permalink }}" class="text-eureka hover:underline"
          >{{ .LinkTitle }}</a
        >
      </h2>
    {{ end }}
  </div>
{{ end }}