hugo-theme-mofo

Minimal theme for Hugo
git clone https://git.bracken.jp/hugo-theme-mofo.git
Log | Files | Refs | LICENSE

baseof.html (240B)


      1 <!doctype html>
      2 <html lang="{{ .Site.Language }}">
      3 <head>
      4 {{ partial "head.html" . -}}
      5 </head>
      6 <body>
      7 {{ partial "header.html" . -}}
      8 
      9 <main id="main">
     10 {{ block "content" . }}{{ end }}
     11 </main>
     12 
     13 {{ partial "footer.html" . -}}
     14 </body>
     15 </html>