Files
gokarna/themes/gokarna/layouts/partials/post.html
2021-08-05 17:14:14 +05:30

24 lines
573 B
HTML

<div class="post container">
<div class="post-header-section">
<h1>{{ .Title }}</h1>
<small role="doc-subtitle">This is a subheading</small>
<p class="post-date">
{{ dateFormat "January 2, 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>