mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-27 12:24:03 +00:00
19 lines
325 B
HTML
19 lines
325 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
{{ partial "header" . }}
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
{{ partial "skippy" . }}
|
||
|
|
|
||
|
|
{{ partial "docs-navbar" . }}
|
||
|
|
|
||
|
|
<main class="bd-content p-5" id="content" role="main">
|
||
|
|
{{ .Content }}
|
||
|
|
</main>
|
||
|
|
|
||
|
|
{{ partial "footer" . }}
|
||
|
|
{{ partial "scripts" . }}
|
||
|
|
</body>
|
||
|
|
</html>
|