d717302b01
* add disqus * Add readme --------- Co-authored-by: adibaulia <adib.aulia@gli.id>
43 lines
1 KiB
HTML
43 lines
1 KiB
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<div class="title">
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
<div class="meta">Posted on {{ dateFormat "Jan 2, 2006" .Date }}{{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}</div>
|
|
</div>
|
|
{{ if isset .Params "tldr" }}
|
|
<div class="tldr">
|
|
<strong>tl;dr:</strong>
|
|
{{ .Params.tldr }}
|
|
</div>{{ end }}
|
|
|
|
<section class="body">
|
|
{{ .Content }}
|
|
</section>
|
|
|
|
<div class="post-tags">
|
|
{{ if ne .Type "page" }}
|
|
{{ if gt .Params.tags 0 }}
|
|
<nav class="nav tags">
|
|
<ul class="tags">
|
|
{{ range .Params.tags }}
|
|
<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{- $.Scratch.Set "isDisqus" true -}}
|
|
<!-- Check if disqus short name is given -->
|
|
{{ if not .Site.DisqusShortname }}
|
|
{{- $.Scratch.Set "isDisqus" false -}}
|
|
{{ end }}
|
|
|
|
{{- if eq ($.Scratch.Get "isDisqus") true -}}
|
|
{{- partial "disqus.html" . -}}
|
|
{{- end -}}
|
|
</article>
|
|
</main>
|
|
{{ end }}
|