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

baseof.html « _default « layouts « src - github.com/twbs/blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a38070761bec0a14e79db46093399ae9b1be602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="{{ .Site.LanguageCode }}" class="no-js">
  <head>
    {{ partial "head" . }}
  </head>
  <body>
    {{ partial "navbar" . }}
    {{ partial "hero" . }}
    {{ partial "subnav" . }}

    <div class="container">
      {{ block "main" . }}
      {{ end }}
    </div>

    {{ partial "footer" . }}

    {{ partial "lazyload" . }}
  </body>
</html>