You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
507 B
HTML
14 lines
507 B
HTML
{{- /* Shared render for spec pages: title, optional description, endpoints list, body, and last-mod info. */ -}}
|
|
<div class="td-content">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Params.description }}<p class="page-description">{{ . | markdownify }}</p>{{ end }}
|
|
|
|
{{/*
|
|
Render an endpoints table of contents. This is the main difference
|
|
between our templates (which call the spec-content partial) and the default
|
|
Docsy template.
|
|
*/}}
|
|
{{ partial "endpoints-toc.html" . }}
|
|
|
|
{{ .Content }}
|
|
</div> |