conventionalcommits.org/themes/conventional-commits/layouts/partials/welcome.html
2024-10-23 11:00:43 +02:00

17 lines
560 B
HTML

<section class="welcome">
<div class="container">
<h1 class="welcome__title">{{.Param "Title"}}</h1>
<p class="welcome__description">{{.Param "Description"}}</p>
{{ if .Param "Actions" }}
<div class="welcome__actions">
{{ range .Param "Actions" }}
<a class="welcome__action" href="{{.url}}">{{.label}}</a>
{{ end }}
</div>
{{ end }}
<figure class="welcome__image {{ if .Site.Language.Params.rtl }}rtl__image{{ end }}">
<img src='{{default "/img/git-flow--welcome.png"}}'>
</figure>
</div>
</section>