personal-site/layouts/_default/summary.html

10 lines
328 B
HTML
Raw Normal View History

2021-01-02 22:35:28 +00:00
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="{{ .Permalink }}">{{ .Title }}</a>
</div>
<time class="recent-block__time">{{ .Date.Format "02.01.2006 15:04" }}</time>
2021-01-02 20:17:33 +00:00
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</article>