jefklakscodex/themes/hugo-creative-portfolio-theme/layouts/_default/single.html

15 lines
382 B
HTML
Raw Normal View History

2018-05-14 07:41:47 +02:00
{{ define "main" }}
<div class="col-xs-12 col-sm-8 col-md-9 content-column white-background">
{{ partial "mobile_nav_toggle.html" . }}
<div class="row">
<div class="col-lg-8">
<div class="content-column-content">
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ template "_internal/disqus.html" . }}
</div>
</div>
</div>
</div>
{{ end }}