You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
719 B
HTML

{{ define "main" }}
<div class="post-list-container post-list-container-shadow">
<a class="a-block">
<div class="post-item-wrapper post-item-wrapper-no-hover">
<div class="post-item post-item-no-gaps">
<div class="post-item-info-wrapper">
<div class="post-item-title post-item-title-small">
{{.Title}}
</div>
</div>
</div>
</div>
</a>
<div class="tags">
{{ range .Data.Terms }}
<div class="tag">
<a href="{{.Page.RelPermalink}}" class="btn btn-outline-secondary position-relative rounded-pill">
{{.Page.Title}}
<span class="badge">({{.Count}})</span>
</a>
</div>
{{ end }}
</div>
</div>
{{ end }}