ref: b520f8852d566f778ad13e2201adcf71c7d42d34
dir: /examples/blog/layouts/indexes/post.html/
{{ template "chrome/header.html" . }} <body> {{ template "chrome/navbar.html" . }} <div class="container"> <div class="row"> <div class="col-md-9"> <div class="well well-sm"> <strong>Blog Post Archive</strong> <ul class="list-unstyled"> {{ range .Data.Pages }} {{ .Render "li" }} {{ end}} </ul> </div> </div> <!-- Sidebar --> <div class="col-md-3"> {{ template "chrome/menu.html" . }} </div> </div> {{ template "chrome/footer.copyright.html" . }} </div> {{ template "chrome/footer.html" . }}