This repository has been archived on 2021-12-31. You can view files and clone it, but cannot push or open issues or pull requests.
beta.coopcloud.tech/layouts/index.html

63 lines
2.1 KiB
HTML

{{ define "main" }}
<section class="section container-fluid mt-n3 pb-3">
<div class="row justify-content-center">
<div class="col-lg-12 text-center">
<h1 class="mt-0">{{ .Title }}</h1>
</div>
<div class="col-lg-9 col-xl-8 text-center">
<p class="lead">{{ .Params.lead | safeHTML }}</p>
<a class="btn btn-primary btn-lg px-4 mb-2" href="/docs/{{ if .Site.Params.options.docsVersioning }}{{ .Site.Params.docsVersion }}/{{ end }}get-started/intro/" role="button">Get Started</a>
<p class="meta">Still beta software. Beta as fuck.</p>
</div>
</div>
</section>
{{ end }}
{{ define "sidebar-prefooter" }}
<section class="section section-sm">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-5">
<h2 class="h4">Collaborative</h2>
<p>Democratic development process, centred on libre software licenses, community governance and a configuration commons.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Simple</h2>
<p>Quick, flexible, and intuitive with low resource requirements, minimal overhead, and extensive documentation.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Private</h2>
<p>Control your hosting: use on-premise or virtual servers to suit your needs. Encryption as standard.</p>
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-lg-5">
<h2 class="h4">Transparent</h2>
<p>Following established open standards, best practices, and builds on existing tools.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">$another_reason</h2>
<p>$another_description</p>
</div>
<div class="col-lg-5">
<h2 class="h4">$another_reason</h2>
<p>$another_description</p>
</div>
</div>
</div>
</section>
{{ end }}
{{ define "sidebar-footer" }}
<section class="section section-sm container-fluid">
<div class="row justify-content-center text-center">
<div class="col-lg-9">
{{- .Content -}}
</div>
</div>
</section>
{{ end }}