conventionalcommits.org/themes/conventional-commits/layouts/partials/welcome.html

17 lines
560 B
HTML
Raw Permalink Normal View History

2018-09-13 22:36:30 +02:00
<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 }}">
2018-09-13 22:36:30 +02:00
<img src='{{default "/img/git-flow--welcome.png"}}'>
</figure>
</div>
</section>