10 lines
237 B
HTML
10 lines
237 B
HTML
<section id="{{ .Slug }}">
|
|
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
|
{{ range .Params.tags }}
|
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
<div>
|
|
{{ .Content }}
|
|
</div>
|
|
</section>
|