24 lines
947 B
HTML
24 lines
947 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
<main class="flex">
|
|
<section class="section-home {{ .Params.color }} flex w-100">
|
|
<div class="flex align-center bck-marked w-100 section-header">
|
|
<h2>{{ .Params.title }}</h2>
|
|
<p class="subtitle">{{ .Params.description | markdownify }}</p>
|
|
</div>
|
|
<div class="content">
|
|
<div>
|
|
<button data-type="client server" class="activable active btn lv2 implementationtype">All</button>
|
|
<button data-type="client" class="activable btn lv2 implementationtype client">Clients</button>
|
|
<button data-type="server" class="activable btn lv2 implementationtype server">Servers</button>
|
|
</div>
|
|
{{ partial "content.html" .Content }}
|
|
</div>
|
|
</section>
|
|
</main>
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
</html>
|