mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
19 lines
489 B
HTML
19 lines
489 B
HTML
|
{{ template "chrome/header.html" . }}
|
||
|
<body>
|
||
|
{{ template "chrome/navbar.html" . }}
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col-md-9">
|
||
|
{{ range first 10 .Data.Pages }}
|
||
|
{{ .Render "summary" }}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
|
||
|
<!-- Sidebar -->
|
||
|
<div class="col-md-3">
|
||
|
{{ template "chrome/menu.html" . }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ template "chrome/footer.copyright.html" . }}
|
||
|
</div>
|
||
|
{{ template "chrome/footer.html" . }}
|