mirror of
https://github.com/sascha-hemi/pycom-documentation.git
synced 2026-03-21 07:06:20 +01:00
20 lines
546 B
HTML
20 lines
546 B
HTML
{{ define "main" }}
|
|
<v-card>
|
|
<v-card-text>
|
|
{{ partial "breadcrumb_recursive.html" (dict "menu" .Site.Menus.main "page" . ) }}
|
|
<h1>{{- .Title -}}</h1>
|
|
{{- .Content -}}
|
|
<ul>
|
|
{{ if lt .WordCount 10 }}
|
|
{{ range .Paginator.Pages }}
|
|
<li><a href="{{ .URL }}">
|
|
{{ if .Title }}{{ .Title }}{{ else }}{{ .URL }}{{ end }}
|
|
<a/></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</v-card-text>
|
|
</v-card>
|
|
<p> </p>
|
|
{{ partial "prev_next.html" (dict "menu" .Site.Menus.main "page" . ) }}{{ end }}
|