hugo/examples/blog/layouts/_default/single.html

22 lines
557 B
HTML
Raw Normal View History

{{ partial "header.html" . }}
2014-04-12 16:04:17 -04:00
<body>
{{ partial "navbar.html" . }}
2014-04-12 16:04:17 -04:00
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="well well-sm">
<h3>{{ .Title }}<br> <small>{{ .Description }}</small></h3>
<hr>
{{ .Content }}
</div>
</div>
<!-- Sidebar -->
<div class="col-md-3">
{{ partial "menu.html" . }}
2014-04-12 16:04:17 -04:00
</div>
</div>
{{ partial "footer.copyright.html" . }}
2014-04-12 16:04:17 -04:00
</div>
{{ partial "footer.html" . }}