24 lines
571 B
HTML
24 lines
571 B
HTML
<div class="post container">
|
|
|
|
<div class="post-header-section">
|
|
<h1>{{ .Title }}</h1>
|
|
<small role="doc-subtitle">{{ .Description }}</small>
|
|
<p class="post-date">
|
|
{{ dateFormat "2 January, 2006" .Date }}
|
|
</p>
|
|
|
|
<ul class="post-tags">
|
|
{{ range .Params.tags }}
|
|
<li class="post-tag"><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="post-content">
|
|
<p>
|
|
{{ .Content }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|