personal-site/layouts/portfolio/summary.html

12 lines
345 B
HTML
Raw Normal View History

2021-06-06 19:05:06 +00:00
<li class="project">
<h2>
<a class="project-name" href="{{ .Permalink }}">{{ .Title }}</a>
</h2>
<p class="project-description">{{.Description}}</p>
2021-06-06 14:26:13 +00:00
<time class="recent-block__time">{{ .Date.Format "02.01.2006 15:04" }}</time>
2021-06-06 19:05:06 +00:00
2021-06-06 14:26:13 +00:00
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
2021-06-06 19:05:06 +00:00
</li>