You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
393 B
HTML
20 lines
393 B
HTML
{{ partial "head.html" . }}
|
|
<body>
|
|
{{ partial "nav.html" . }}
|
|
{{ partial "profile.html" . }}
|
|
|
|
<section id="wrapper" class="home">
|
|
{{ .Content }}
|
|
|
|
{{ if .Site.Params.enableDisqus }}
|
|
{{ if ne .Params.disabledisqus "true" }}
|
|
{{ partial "disqus.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ partial "footer.html" . }}
|
|
</section>
|
|
|
|
{{ partial "js.html" . }}
|
|
</body>
|