Files
gokarna/layouts/partials/post.html
Yash Mehrotra e8b9e86fc5 Rearchitect theme directory (#59)
* Rearchitect theme directory

* Fix symlink
2021-08-14 02:41:02 +05:30

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 "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>