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

index.html « layouts - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7101ad34932c3eb31d2de8a1eea0ef5c7e3e21af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang='{{ .Site.LanguageCode }}'>
  {{- partial "head.html" . -}}
  <body class="bg-gradient flex flex-col min-h-screen">
    {{- partial "header.html" . -}}
    <main class="flex-1 mt-12 max-w-3xl mx-auto text-gray-700 w-full">
      <article class="article">
        {{ partial "intro.html" . }}

        {{ range site.RegularPages.GroupByDate "2006" -}}
            {{ partial "post-summary.html" . }}
        {{ end }}
      </article>
    </main>
    {{- partial "footer.html" . -}}
  </body>
</html>