github.com/shohhei1126/hugo@v0.42.2-0.20180623210752-3d5928889ad7/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" . }}