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

25 lines
809 B
HTML
Raw Normal View History

2018-09-13 22:36:30 +02:00
<footer class="footer">
<div class="container">
{{ if .Site.Params.License }}
<div class="footer__license">
{{ if .Site.Params.License.Title }}
<p>{{ .Site.Params.License.Title }}</p>
{{ end }}
{{ if .Site.Params.License.Action }}
<a href="{{.Site.Params.License.Action.Url}}" target="_blank">{{.Site.Params.License.Action.Label}}</a>
{{ end }}
</div>
<a href="https://www.netlify.com">
<img src="https://www.netlify.com/img/global/badges/netlify-light.svg"/>
</a>
2018-09-13 22:36:30 +02:00
{{ end }}
<div class="footer__logos">
{{ range .Site.Params.Footer.Logos }}
{{ if .name }}
<a class="footer__logo" href="{{.url}}">{{ (partial (printf "%s%v%s" "svg-" .name ".html") .) }}</a>
{{ end }}
{{ end }}
</div>
</div>
</footer>