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: 9beb750253c3d85b18fb7de818917ab6c4eec0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html lang="{{ .Site.LanguageCode }}" class="no-js">
  <head>
    {{ partial "head" . }}
  </head>
  <body>
    {{ partial "icons" . }}
    {{ partial "navbar" . }}

    <div class="container-xxl px-4 px-xxl-2">
      <div class="d-lg-grid" id="content">
        <div class="sidebar">
          {{ partial "hero" . }}
        </div>
        <div class="main">
          {{ block "main" . }}
          {{ end }}
        </div>
      </div>
    </div>

    {{ partial "footer" . }}

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