website/layouts/partials/downloads.html
Pierre-Olivier Mercier 4dff3fdaac
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add checks deep-dive section with dangling-records case study
Introduce a new #checks section presenting domain, zone and service
checkers in three columns linking to the documentation, plus a
dangling-records case study spotlight. Rework discover copy toward
peace-of-mind framing and adjust section backgrounds and CTA layout.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-12 18:24:30 +09:00

68 lines
2.7 KiB
HTML

<div id="downloads" class="py-5 my-5" style="scroll-margin-top: 2em">
<div class="container my-5">
<div class="row">
<div
class="col-3 d-none d-md-flex flex-column justify-content-center"
>
<img
src="/img/screenshots/users/download.webp"
alt="Download section"
id="download-house"
class="position-relative"
/>
</div>
<div class="col">
<h3 class="fw-bolder display-6">
{{ i18n "downloads-title" }}
<span class="text-muted">
{{ i18n "downloads-subtitle" }}
</span>
</h3>
<div
class="my-5 row row-cols-1 row-cols-sm-3 my-4 align-items-center"
>
<div class="col text-center my-2">
<a
href="https://hub.docker.com/r/happydomain/happydomain/"
class="h-100 btn btn-lg btn-success"
target="_blank"
rel="noopener"
data-umami-event="download-docker"
>
<i class="bi bi-box"></i>
{{ i18n "downloads-docker" }}
</a>
</div>
<div class="col text-center my-2">
<a
href="https://get.happydomain.org/master/"
class="h-100 btn btn-lg btn-success"
target="_blank"
rel="noopener"
data-umami-event="download-binaries"
>
<i class="bi bi-download"></i>
{{ i18n "downloads-binaries" }}
</a>
</div>
<div class="col text-center my-2">
<a
href="https://git.happydomain.org/"
class="h-100 btn btn-lg btn-success"
target="_blank"
rel="noopener"
data-umami-event="download-sources"
>
<i class="bi bi-git"></i>
{{ i18n "downloads-source" }}
</a>
</div>
</div>
{{ i18n "downloads-text" | markdownify }}
</div>
</div>
</div>
</div>