You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
503 B
21 lines
503 B
<p id="date">{{.Date.Format "2006-01-02"}}</p>
|
|
<p>
|
|
{{ with .Params.categories }}
|
|
<span id="categories">
|
|
{{ range . }}
|
|
<a href="{{ "categories" | absURL}}/{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
{{ with .Params.tags }}
|
|
<span id="tags">
|
|
{{ range . }}
|
|
<a href="{{ "tags" | absURL}}/{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
</p>
|
|
{{ .Summary }}
|
|
{{- if .Truncated -}}
|
|
<p><a href="{{.Permalink}}">Read more</a></p>
|
|
{{- end -}}
|