2021-07-13 22:18:53 +00:00
|
|
|
{{ define "main" }}
|
2021-08-02 21:53:47 +00:00
|
|
|
{{ $lang := .Site.Language.Lang }}
|
2021-07-13 22:18:53 +00:00
|
|
|
<section class="section-header">
|
|
|
|
<div class="columns-container" style="display: flex" >
|
|
|
|
<div class="column col1 text-center vertical-center">
|
|
|
|
<br>
|
2021-08-08 14:01:07 +00:00
|
|
|
<h1 class="flex flex-center fill-width larger"><img src="/img/logo.svg" class="icon-twice-text" alt="Ad5001's icon"/>Ad5001</h1>
|
2021-08-08 20:25:57 +00:00
|
|
|
{{ .Params.HeaderDescription | markdownify }}
|
2021-07-13 22:18:53 +00:00
|
|
|
<div class="grid flex-center">
|
2021-07-16 22:36:59 +00:00
|
|
|
{{ partial "links.html" .Params.Links }}
|
2021-07-13 22:18:53 +00:00
|
|
|
</div>
|
2021-08-02 21:53:47 +00:00
|
|
|
|
|
|
|
<div class="social-list grid flex-center padding-container-point3">
|
2021-08-10 20:51:46 +00:00
|
|
|
{{ partial "social-buttons" (dict "Buttons" .Site.Data.menu.social "Lang" $lang) }}
|
2021-08-02 21:53:47 +00:00
|
|
|
</div>
|
2021-07-13 22:18:53 +00:00
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-07-15 17:45:45 +00:00
|
|
|
<section class="section-skewed">
|
2021-08-03 12:59:16 +00:00
|
|
|
<br>
|
2021-08-08 20:25:57 +00:00
|
|
|
<h1 class="text-center">{{ i18n "softwareCommitments" }}</h1>
|
2021-07-13 22:18:53 +00:00
|
|
|
<div class="columns-container padding-container-3" >
|
2021-08-09 12:33:00 +00:00
|
|
|
{{ $cardsCount := len .Params.Cards.List }}
|
|
|
|
{{ range .Params.Cards.List }}
|
|
|
|
{{ $card := index $.Params.Cards . }}
|
|
|
|
<div class="column col{{ $cardsCount }} vertical-center padding-container">
|
|
|
|
<div class="card {{ $card.Color }} {{ $card.Orientation }} padding-container text-content">
|
2021-07-13 22:18:53 +00:00
|
|
|
<h2 class="flex flex-center text-center">
|
2021-08-09 12:33:00 +00:00
|
|
|
<i class="icon-{{ $card.Icon }} icon-larger2-text"></i>
|
|
|
|
{{ $card.Title }}
|
2021-07-13 22:18:53 +00:00
|
|
|
</h2>
|
|
|
|
<p>
|
2021-08-09 12:33:00 +00:00
|
|
|
{{ $card.Description | markdownify }}
|
2021-07-13 22:18:53 +00:00
|
|
|
</p>
|
|
|
|
<br>
|
|
|
|
<div class="grid flex-center">
|
2021-08-09 12:33:00 +00:00
|
|
|
{{ partial "links.html" $card.Links }}
|
2021-07-13 22:18:53 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-08-09 12:33:00 +00:00
|
|
|
{{ end }}
|
2021-07-13 22:18:53 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2021-07-15 17:45:45 +00:00
|
|
|
<section class="padding-container-3">
|
|
|
|
<h1>{{ .Params.NewSection.Title }}</h1>
|
|
|
|
<p>
|
|
|
|
{{ .Params.NewSection.Description | markdownify }}
|
|
|
|
</p>
|
|
|
|
<div class="grid">
|
2021-07-16 22:36:59 +00:00
|
|
|
{{ partial "links.html" .Params.NewSection.Links }}
|
2021-07-15 17:45:45 +00:00
|
|
|
</div>
|
2021-08-02 21:53:47 +00:00
|
|
|
<br>
|
2021-07-15 17:45:45 +00:00
|
|
|
</section>
|
2021-07-13 22:18:53 +00:00
|
|
|
{{ end }}
|