fabinfra-theme/layouts/partials/list-item-project.html

24 lines
678 B
HTML

<div class="list-item">
<div class="list-logo">
<a href="{{ .Permalink }}">
<img src="{{ .Params.logo }}">
</a>
</div>
<div class="list-content">
<a href="{{ .Permalink }}">
<h4>{{ .Title }}</h4>
</a>
<h5>{{ .Description }}</h5>
{{ range.Params.categories }}
<a href="{{"/categories/"|relLangURL }}{{.|urlize}}">
<kbd class="item-cat"> {{ . }} </kbd>
</a>
{{ end }}
{{ range .Params.tags }}
<a href="{{"/tags/"|relLangURL }}{{.|urlize}}">
<kbd class="item-tag"> {{ . }} </kbd>
</a>
{{ end }}
</div>
</div>