mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
d61bee5e09
The example blog had not been updated for some time and I had to restructure it a little bit. Fixes #6752 Changed tag and category directory structure
24 lines
645 B
HTML
24 lines
645 B
HTML
{{ partial "header.html" . }}
|
|
<body>
|
|
{{ partial "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">
|
|
{{ partial "menu.html" . }}
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.copyright.html" . }}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|