mirror of https://github.com/logos-co/roadmap.git
21 lines
471 B
HTML
21 lines
471 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Lang }}">
|
||
|
{{ partial "head.html" . }}
|
||
|
|
||
|
<body>
|
||
|
{{partial "search.html" .}}
|
||
|
<div class="singlePage">
|
||
|
<!-- Begin actual content -->
|
||
|
{{partial "header.html" .}}
|
||
|
<article>
|
||
|
{{partial "toc.html" .}}
|
||
|
{{partial "textprocessing.html" . }}
|
||
|
{{if $.Site.Data.config.enableRecentNotes}}
|
||
|
{{partial "recent.html" . }}
|
||
|
{{end}}
|
||
|
</article>
|
||
|
{{partial "footerIndex.html" .}}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|