2019-03-13 05:20:07 +00:00
|
|
|
{{ define "main" }}
|
2019-01-06 10:40:05 +00:00
|
|
|
|
2019-03-13 05:20:07 +00:00
|
|
|
{{ "<!-- topics -->" | safeHTML }}
|
2020-02-18 10:58:36 +00:00
|
|
|
<section class="section">
|
2019-03-13 05:20:07 +00:00
|
|
|
<div class="container">
|
2019-09-04 11:35:48 +00:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-12 text-center">
|
2020-01-08 10:41:37 +00:00
|
|
|
<h2 class="section-title">{{ i18n "topics_title" | safeHTML }}</h2>
|
2019-01-06 10:40:05 +00:00
|
|
|
</div>
|
2019-09-04 11:35:48 +00:00
|
|
|
{{ "<!-- topic-item -->" | safeHTML }}
|
2020-01-05 05:32:51 +00:00
|
|
|
{{ range (where .Site.Pages "Type" "docs") }}
|
2019-09-04 11:35:48 +00:00
|
|
|
<div class="col-lg-4 col-sm-6 mb-4">
|
|
|
|
<a href="{{ .Permalink }}" class="px-4 py-5 bg-white shadow text-center d-block match-height">
|
2020-11-05 03:50:04 +00:00
|
|
|
{{ with .Params.icon}}<i class="{{.}} icon text-primary d-block mb-4"></i>{{end}}
|
2019-09-04 11:35:48 +00:00
|
|
|
<h3 class="mb-3 mt-0">{{ .Title }}</h3>
|
2020-11-05 03:50:04 +00:00
|
|
|
{{with .Params.description}}<p class="mb-0">{{. | markdownify}}</p>{{end}}
|
2019-09-04 11:35:48 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2019-01-06 10:40:05 +00:00
|
|
|
</div>
|
2019-03-13 05:20:07 +00:00
|
|
|
</section>
|
|
|
|
{{ "<!-- /topics -->" | safeHTML }}
|
2019-01-06 10:40:05 +00:00
|
|
|
|
2019-03-13 05:20:07 +00:00
|
|
|
{{ if .Site.Params.cta.enable }}
|
2020-02-18 10:58:36 +00:00
|
|
|
{{ with .Site.Params.cta }}
|
2019-03-13 05:20:07 +00:00
|
|
|
{{ "<!-- call to action -->" | safeHTML }}
|
2020-02-18 10:58:36 +00:00
|
|
|
<section>
|
2019-03-13 05:20:07 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2020-02-18 10:58:36 +00:00
|
|
|
<div class="section px-3 bg-white shadow text-center">
|
|
|
|
<h2 class="mb-4">{{ .title | markdownify }}</h2>
|
|
|
|
<p class="mb-4">{{ .content | markdownify }}</p>
|
|
|
|
{{ if .button.enable }}
|
|
|
|
{{ with .button }}
|
|
|
|
<a href="{{ .link | relLangURL }}" class="btn btn-primary">{{ .label }}</a>
|
|
|
|
{{ end }}
|
2020-01-08 10:41:37 +00:00
|
|
|
{{ end }}
|
2019-01-06 10:40:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-03-13 05:20:07 +00:00
|
|
|
</section>
|
|
|
|
{{ "<!-- /call to action -->" | safeHTML }}
|
|
|
|
{{ end }}
|
2020-02-18 10:58:36 +00:00
|
|
|
{{ end }}
|
2019-01-06 10:40:05 +00:00
|
|
|
|
2019-03-13 05:20:07 +00:00
|
|
|
{{ end }}
|