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

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