mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 04:46:58 +01:00
25 lines
452 B
HTML
25 lines
452 B
HTML
{{/*
|
|
|
|
This template render single pages
|
|
|
|
*/}}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
{{ partial "header.html" . }}
|
|
|
|
<body>
|
|
<div id="layout" class="pure-g">
|
|
<article class="pure-u-1">
|
|
{{ partial "brand.html" . }}
|
|
{{ partial "content.header.html" . }}
|
|
{{ partial "toc.html" . }}
|
|
<section>{{ .Content }}</section>
|
|
<section>
|
|
{{ partial "disqus.html" . }}
|
|
{{ partial "footer.html" . }}
|
|
</section>
|
|
</article>
|
|
</div>
|
|
</body>
|
|
</html>
|