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

page-header.html « partials « layouts - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8aef02b80c04b99ce9cb9c6c734b66ab60d64009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div>
	<h2>
		<a href="{{ .Site.BaseURL }}" title="{{ .Site.Title }}" class="heading font-cursive icon">{{ .Site.Title }}</a>
	</h2>
</div>
<h1 class="pt-2">
	{{- .Title -}}
</h1>
{{with .Description}}
<h3 class="text-java-700 font-normal leading-relaxed pt-2">{{.}}</h3>
{{end}}
<div class="flex flex-wrap justify-end pt-2 ">
	{{- partial "tags.html" . -}}
	<time class="text-eucalyptus-500 md:text-right md:flex-grow font-light pl-4"
		datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
		{{- .Date.Format (.Site.Params.PostDateFormat | default "2006-1-2 15:04") -}}
	</time>
</div>
{{ partial "toc.html" . }}
<hr />