Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « _default « layouts - gitlab.com/kskarthik/monopriv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2c6a7cf77d42d67afed1c2f62b607899231543c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{define "main"}}
{{ if eq .Section "post"}}

	<section class="container text-monospace text-justified mt-3">
	  <h2>{{.Title}}</h2>
	  <small class="text-secondary">Posted on {{ .PublishDate.Format "January 2, 2006" }} | {{.ReadingTime}} minute read</small>
	  {{ .Content }}
	  <code>tags:
	  {{- range .Params.tags -}}
	      <span class='badge badge-dark'><a class='text-white' href='{{ "tags/" | absURL }}{{ . | lower }}'>{{ . }}</a></span>
	  {{ end }}
	  </code>
	  <div class="container mt-2" id="comments">
	    {{ if .Site.Params.disqus }}
	      {{ template "_internal/disqus.html" . }}
	    {{ else }}
		<small>Please mail your comments to <a href="{{.Site.Params.email}}">{{.Site.Params.email}}</a></small><br>
	    {{end}}
	  </div>
	</section>

{{else}}

	<section class="container text-monospace text-justified mt-3">
	  <h2 class="text-center">{{.Title}}</h2>
	    {{ .Content }}
	</section>

{{end}}
{{end}}