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

baseof.html « _default « layouts « site - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0714faf3aa5bba07607d092eef27b6d06dbe1f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en" data-bs-theme="auto">
  <head>
    {{ partial "header" . }}
  </head>
  {{ block "body_override" . }}<body>{{ end }}
    {{ partial "skippy" . }}
    {{ partial "icons" . }}

    {{ partial "docs-navbar" . }}

    {{ block "main" . }}
    {{ end }}

    {{ partial "footer" . }}
    {{ partial "scripts" . }}

    {{ block "footer" . }}
    {{ end }}
  </body>
</html>