mirror of https://github.com/docker/docs.git
24 lines
634 B
HTML
24 lines
634 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
</head>
|
|
|
|
<body class="flex flex-col min-h-screen bg-background-light text-base dark:bg-background-dark dark:text-white">
|
|
{{ partial "header.html" . }}
|
|
<main class="flex justify-center">
|
|
<div class="lg:w-[1200px] overflow-clip p-6 pt-0 w-lvw">
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
<footer class="mt-auto">{{ partialCached "footer.html" . }}</footer>
|
|
{{/* Load the YouTube player if the page embeds a YouTube video */}}
|
|
{{ with .Store.Get "youtube" }}
|
|
{{- partial "youtube-script.html" . }}
|
|
{{ end }}
|
|
</body>
|
|
|
|
</html>
|