jk.nipponalba.scot website
https://jk.nipponalba.scot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
{{ define "main" }}
|
|
<div class="post animated fadeInDown">
|
|
<div class="post-content">
|
|
|
|
<div class="post-title">
|
|
<h3>{{ .Title }}
|
|
</h3>
|
|
{{ if eq .Type "post"}}
|
|
<div class="info">
|
|
<i class="fa fa-sun-o"></i><span class="date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
|
|
<i class="fa fa-clock-o"></i><span class="reading-time">{{ .ReadingTime }}-minute read</span>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ .Content }}
|
|
</div>
|
|
<div class="post-footer">
|
|
<div class="info">
|
|
{{ with .Page.Params.Blog }}{{ partial "taxonomy/blog.html" . }}{{ end }}
|
|
{{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
|
|
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ if eq .Type "post"}}
|
|
{{ if .Site.DisqusShortname -}}
|
|
<div id="fb_comments_container">
|
|
<h2>Comments</h2>
|
|
{{ template "_internal/disqus.html" . }}
|
|
</div>
|
|
{{- end }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ end }}
|