14 lines
344 B
HTML
14 lines
344 B
HTML
|
<article>
|
||
|
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
||
|
<time>{{ .Date.Format "02.01.2006 15:04" }}</time>
|
||
|
{{ range .Params.tags }}
|
||
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
||
|
{{ end }}
|
||
|
<div>
|
||
|
{{ .Summary }}
|
||
|
{{ if .Truncated }}
|
||
|
<a href="{{ .Permalink }}">Read more...</a>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</article>
|