simple-hugo

A simple Hugo theme I use for my website
git clone git://git.christianermann.dev/simple-hugo
Log | Files | Refs | README | LICENSE

baseof.html (240B)


      1 <!DOCTYPE html>
      2 <html lang="{{ .Site.LanguageCode }}">
      3     {{- partial "head.html" . -}}
      4     <body>
      5         {{- partial "header.html" . -}}
      6         {{- block "main" . }}{{- end }}
      7         {{- partial "footer.html" . -}}
      8     </body>
      9 </html>