hugo-theme-next/layouts/partials/post.html

11 lines
419 B
HTML
Raw Normal View History

<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="{{ .Site.LauageCode }}">
{{ partial "post/header.html" (dict "ctx" .ctx "IsHome" .IsHome) }}
{{ partial "post/body.html" (dict "ctx" .ctx "IsHome" .IsHome) }}
<footer class="post-footer">
{{ partial "post/footer.html" (dict "ctx" .ctx "IsHome" .IsHome) }}
</footer>
</article>
</div>