github.com/kovansky/hugo@v0.92.3-0.20220224232819-63076e4ff19f/examples/blog/layouts/categories/list.html (about) 1 {{ partial "header.html" . }} 2 3 <body> 4 {{ partial "navbar.html" . }} 5 <div class="container"> 6 <div class="row"> 7 <div class="col-md-9"> 8 <div class="well well-sm"> 9 <strong>Items in category <code>{{ .Title | lower }}</code></strong> 10 <ul class="list-unstyled"> 11 {{ range .Data.Pages }} 12 {{ .Render "li" }} 13 {{ end}} 14 </ul> 15 </div> 16 </div> 17 18 <!-- Sidebar --> 19 <div class="col-md-3"> 20 {{ partial "menu.html" . }} 21 </div> 22 </div> 23 {{ partial "footer.copyright.html" . }} 24 </div> 25 {{ partial "footer.html" . }}