20 lines
358 B
HTML
Executable file
20 lines
358 B
HTML
Executable file
{{ partial "header.html" . }}
|
|
<body lang="en" class="theme-base-0f">
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
<div class="content container">
|
|
|
|
<section id="main">
|
|
<div>
|
|
<ul id="list">
|
|
{{ range first 10 .Data.Pages }}
|
|
{{ .Render "summary"}}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
{{ partial "footer.html" . }}
|
|
|