Files
pycom-documentation/layouts/_default/single.html
jirikrepl 6e99f42af8 feat: added "algolia search" css class to layout templates
hugo uses single and list templates:
https://gohugo.io/templates/lists/
https://gohugo.io/templates/single-page-templates/

we use single templates for "leaf" pages at the bottom of
and list templates for all other pages
2020-01-07 11:03:36 +01:00

16 lines
434 B
HTML

{{ define "main" }}
<v-card class="DocSearch-content">
<v-card-text>
{{ if not .Params.disable_breadcrumbs }}
{{ partial "breadcrumb_recursive.html" (dict "menu" .Site.Menus.main "page" . ) }}
{{ end }}
<h1 class="mt-0 pt-0">{{- .Title -}}</h1>
{{- .Content -}}
</v-card-text>
</v-card>
<p>&nbsp;</p>
{{ partial "prev_next.html" (dict "menu" .Site.Menus.main "page" . ) }}
<v-spacer/>
{{ end }}