diff options
Diffstat (limited to 'themes/flamingo/layouts/_default/single.html')
-rw-r--r-- | themes/flamingo/layouts/_default/single.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/themes/flamingo/layouts/_default/single.html b/themes/flamingo/layouts/_default/single.html new file mode 100644 index 0000000..99ec989 --- /dev/null +++ b/themes/flamingo/layouts/_default/single.html @@ -0,0 +1,32 @@ +{{ define "main" }} + <main> + <article> + <h1>{{ .Title }}</h1> + + {{ if .Date }} + <time>{{ .Date.Format "Jan 02, 2006" }}</time> + {{ end }} + + {{ partial "tagbar.html" }} + {{ with .Params.tags }} + <div class="tags"> + <ul> + {{ range . }} + <li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a></li> + {{ end }} + </ul> + </div> + {{ end }} + + <div class="blog-post-content"> + {{ .Content }} + </div> + <!-- {{ with .Site.DisqusShortname }} + <div> + {{ template "_internal/disqus.html" . }} + </div> + {{ end }} + </article> --> + </main> + <!-- {{ partial "sidebar.html" . }} --> +{{ end }} |