14 lines
471 B
HTML
14 lines
471 B
HTML
|
|
<div class="post-block">
|
|
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="{{ .Scratch.Get "lang" }}">
|
|
|
|
{{ partial "post/header.html" (dict "ctx" .ctx "IsHome" .IsHome) }}
|
|
<!-- POST BODY -->
|
|
{{ 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>
|
|
|