2023-08-20 23:43:33 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{{ template "head.html" . }}
|
|
|
|
</head>
|
|
|
|
<body class="terminal">
|
2023-12-07 13:50:15 +01:00
|
|
|
{{ template "banner.html" . }}
|
2023-11-25 09:28:26 +01:00
|
|
|
{{ template "navigation.html" . }}
|
2023-08-20 23:43:33 +02:00
|
|
|
<div class="container">
|
|
|
|
{{ .Content }}
|
|
|
|
<div class="components components-grid">
|
|
|
|
{{ template "aside.html" . }}
|
|
|
|
<main>
|
|
|
|
{{ template "grid.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "nav.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "nav-list.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "lists.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "typography.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "tables.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "special-elements.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "forms.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "progress.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "buttons.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "card.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "timeline.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "alerts.html" . }}
|
|
|
|
<hr />
|
2023-12-08 19:59:19 +01:00
|
|
|
{{ template "media.html" . }}
|
|
|
|
<hr />
|
2023-08-20 23:43:33 +02:00
|
|
|
{{ template "figure.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "highlight-js.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "documentation.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "footer.html" . }}
|
|
|
|
<hr />
|
|
|
|
{{ template "version.html" . }}
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ template "bottom-scripts.html" . }}
|
|
|
|
</body>
|
|
|
|
</html>
|