mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-27 19:38:37 +01:00
This just looks visually nicer. You have an introduction paragraph, then the list of endpoints, then the spec.
12 lines
367 B
HTML
12 lines
367 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 }}
|
|
|
|
{{ partial "endpoints-toc.html" . }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{ partial "page-meta-lastmod.html" . }}
|
|
</div>
|