web-virtit.fr/themes/hugo-theme-nix/layouts/_default/single.html
2018-06-06 18:10:55 +00:00

28 lines
784 B
HTML

<!DOCTYPE html>
<html>
<head>
<title> {{ .Title }} &middot; {{ .Site.Title }} </title>
{{ partial "head.html" . }}
</head>
<body>
{{ partial "header.html" . }}
<div class="container wrapper">
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
<span class="post-date">{{ .Date.Format "Jan 2, 2006 " }}</span>
<div class="post-content">
{{ .Content }}
</div>
{{ if (isset .Params "nocomments") }}
{{ else }}
<div class="post-comments">
{{ template "_internal/disqus.html" . }}
</div>
{{ end }}
<div class="push"></div>
</div>
{{ partial "footer.html" . }}
</body>