18 lines
480 B
HTML
18 lines
480 B
HTML
{{ define "main" }}
|
|
<div class="td-content">
|
|
{{ $hasContent := false }}
|
|
{{ with .File }}
|
|
{{ if ne .Filename "" }}
|
|
{{ $hasContent = (ge (len $.RawContent) 100) }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if $hasContent }}
|
|
{{ partial "docs/content-page" (dict "ctx" $ "page" $ ) }}
|
|
{{ else }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
|
|
{{ end }}
|
|
{{ partial "section-index.html" . }}
|
|
</div>
|
|
{{ end }}
|