blob: e971c188ee91d3e76a0977a8bb735181b943d9f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<article>
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
<b><time>{{ .Date.Format (default "2006-01-02 15:04:05" .Site.Params.dateFmt) }}</time></b>
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
<div>
{{ .Summary | replaceRE "(?s)<div class=\"highlight\"[^>]*>.*?</div>" "" | replaceRE "(?s)<pre[^>]*>.*?</pre>" "" | replaceRE "(?s)<code[^>]*>.*?</code>" "" | replaceRE "(?s)```[\\s\\S]*?```" "" | safeHTML }}
{{ if .Truncated }}
<a href="{{ .Permalink }}">Read more...</a>
{{ end }}
</div>
</article>
|