Added example and changed default configuration to use this example by default to be used out of the box.
14 lines
497 B
HTML
14 lines
497 B
HTML
{{ define "main" }}
|
|
<article class="container p-3 bg-deepmatte brdr-yayellow">
|
|
<p class="title has-text-white">{{ .Title }}</p>
|
|
<div class="content has-text-justified has-text-white">{{ .Content }}</div>
|
|
</article>
|
|
<article class="container p-3 bg-deepmatte brdr-yayellow mt-5">
|
|
<div>
|
|
{{ $file := replaceRE "^(.*)[\\/]$" "data$1.json" .Page.RelPermalink }}
|
|
{{ .Scratch.Set "location" $file }}
|
|
{{ partial "partials/comments" . }}
|
|
</div>
|
|
</article>
|
|
{{ end }}
|