Repos » blog.jread.com » themes » jwr » layouts » _default » single.html
- _markup
- baseof.html (mimetype not supported)
- list.html
- rss.xml (mimetype not supported)
- single.html
- taxonomy.html
- terms.html
{{ define "header" }} {{ partial "post-header.html" . }} {{ end }}
{{ define "main" }} {{ $section := .Site.GetPage "section" .Section }}
You are viewing a single post.
{{ partial "post-header.html" . }}
{{ if and .Params.UseFeaturedImages .Params.featured_image_credit }}
<aside class = "featuredImageCredit">
Featured image by <a href = "{{ .Params.featured_image_url }}">{{ .Params.featured_image_credit }}</a>
</aside>
{{ end }}
<div>
{{- .Content -}}
</div>
<aside>
<h2>Tags</h2>
<br />
{{- partial "tags.html" . -}}
<br />
</aside>
{{- partial "menu-contextual.html" . -}}
<div>
{{ if .Site.DisqusShortname }}
{{ template "_internal/disqus.html" . }}
{{ end }}
</div>
{{ if .Params.Medium }}
<p>This article is also published on <a href = "{{ .Params.Medium }}">Medium.com</a>.</p>
{{ end }}
{{ end }}
