mirror of
https://github.com/conventional-commits/conventionalcommits.org.git
synced 2024-11-15 02:45:15 +01:00
17 lines
560 B
HTML
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>
|