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

display_meta.html « partials « layouts - github.com/rhnvrm/bodhi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e8de6ffd03065802bb7e24305edb707a57f16ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="light">
	<span>{{ dateFormat "02 Jan 2006" $.Date }}</span> -
	<span>{{ .ReadingTime }} minute read</span>
</div>
<div class="small">
	{{ with .Params.categories }}
	categories: 
	{{ range . }}
	<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
	{{ end }}
	{{ end }}
	{{ with .Params.tags }}
	tags: 
	{{ range . }}
	<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
	{{ end }}
	{{ end }}
</div>