mirror of https://github.com/logos-co/roadmap.git
23 lines
509 B
HTML
23 lines
509 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
{{ partial "head.html" . }}
|
||
|
|
||
|
<body>
|
||
|
{{partial "search.html" .}}
|
||
|
<div class="singlePage">
|
||
|
<!-- Begin actual content -->
|
||
|
{{partial "header.html" .}}
|
||
|
<article>
|
||
|
<h1>All {{.Title}}</h1>
|
||
|
{{with .Params.description}}
|
||
|
<p>{{.}}</p>
|
||
|
{{end}}
|
||
|
{{partial "page-list.html" .Paginator.Pages.ByLastmod.Reverse }}
|
||
|
{{ template "_internal/pagination.html" .}}
|
||
|
</article>
|
||
|
{{partial "contact.html" .}}
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|