2021-12-30 22:58:11 +00:00
|
|
|
<!--
|
|
|
|
Omegamma - Hugo theme for ad5001.eu and related websites
|
|
|
|
|
|
|
|
Copyright (C) 2021-2022 Ad5001 <mail@ad5001.eu>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
-->
|
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 }}
|