github.com/graemephi/kahugo@v0.62.3-0.20211121071557-d78c0423784d/examples/blog/layouts/_default/single.html (about)

     1  {{ partial "header.html" . }}
     2  <body>
     3  {{ partial "navbar.html" . }}
     4  <div class="container">
     5      <div class="row">
     6          <div class="col-md-9">
     7              <div class="well well-sm">
     8                      <h3>{{ .Title }}<br> <small>{{ .Description }}</small></h3>
     9                      <hr>
    10                      {{ .Content }}
    11              </div>
    12          </div>
    13  
    14          <!-- Sidebar -->
    15          <div class="col-md-3">
    16              {{ partial "menu.html" . }}
    17          </div>
    18      </div>
    19  {{ partial "footer.copyright.html" . }}
    20  </div>
    21  {{ partial "footer.html" . }}