You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
453 B
23 lines
453 B
{{ partial "header.html" . }}
|
|
{{ partial "navbar.html" . }}
|
|
|
|
<div class="container content">
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
{{ partial "menu" . }}
|
|
</div>
|
|
<div class="col-md-9">
|
|
{{ range where .Site.Pages "Type" "page" }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
|
|
{{ if .Site.DisqusShortname }}
|
|
<div class="col-xs-12">
|
|
{{ partial "disqus.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|