Welcome to mirror list, hosted at ThFree Co, Russian Federation.

summary.html « partials « layouts - github.com/vimux/blank.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aadf63b40d0e4c2fa43069633d7c4288ce406e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
	<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>