mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-02 20:40:24 +00:00
21 lines
361 B
HTML
21 lines
361 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{{ partial "header" . }}
|
|
</head>
|
|
<body>
|
|
{{ partial "skippy" . }}
|
|
|
|
{{ partial "docs-navbar" . }}
|
|
|
|
<main>
|
|
{{ partial "home/masthead" . }}
|
|
{{ partial "home/masthead-followup" . }}
|
|
</main>
|
|
|
|
{{ .Content }}
|
|
|
|
{{ partial "footer" . }}
|
|
{{ partial "scripts" . }}
|
|
</body>
|
|
</html>
|