Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - github.com/h-enk/doks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0550eef8b6fdaea38c4344d409dd1e0fb4e0a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<section class="section container-fluid">
  <div class="row justify-content-center">
    <div class="col-lg-11 text-center">
      <h1 class="mt-0">{{ .Title }}</h1>
      <p class="lead">{{ .Params.Lead | safeHTML }}</p>
      <a class="btn btn-primary btn-lg px-4 mb-2" href="{{ .Site.BaseURL }}docs/prologue/introduction/" role="button">Get started</a>
      <p><a class="btn btn-link btn-sm" href="https://github.com/h-enk/doks" target="_blank" rel="noreferrer noopener" role="button">{{ .Site.Params.version }}</a></p>
    </div>
  </div>
</section>
<section class="section container-fluid border-top">
  {{- .Content -}}
</section>
{{ end }}