16 lines
694 B
HTML
16 lines
694 B
HTML
{{ define "main" }}
|
|
<main class="home flex">
|
|
<section class="main-first flex align-center">
|
|
{{- partial (printf "svg/illus-home-small.svg") . -}}
|
|
<!--{{- partial (printf "svg/illus-home.svg") . -}}-->
|
|
<h1>Make identity managing <span class="mark">fast</span>, <span class="mark">simple</span> and <span class="mark">interoperable</span></h1>
|
|
<a class="btn lv1" href="#content">Discover SCIM ↓</a>
|
|
<!--<img class="img-background" src="media/global.png"></img>-->
|
|
</section>
|
|
<div id="content" class="w-100">
|
|
{{ range sort (where .Site.RegularPages "Section" "overview") ".Params.weight" }}
|
|
{{ partial "home-section-render.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
{{ end }}
|