mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
Some checks are pending
Spec / 🔎 Validate OpenAPI specifications (push) Waiting to run
Spec / 🔎 Check Event schema examples (push) Waiting to run
Spec / 🔎 Check OpenAPI definitions examples (push) Waiting to run
Spec / 🔎 Check JSON Schemas inline examples (push) Waiting to run
Spec / ⚙️ Calculate baseURL for later jobs (push) Waiting to run
Spec / 🐍 Build OpenAPI definitions (push) Blocked by required conditions
Spec / 📢 Run towncrier for changelog (push) Waiting to run
Spec / 📖 Build the spec (push) Blocked by required conditions
Spec / 🔎 Validate generated HTML (push) Blocked by required conditions
Spec / 📖 Build the historical backup spec (push) Blocked by required conditions
Spell Check / Spell Check with Typos (push) Waiting to run
Co-authored-by: Andrew Morgan <andrew@amorgan.xyz>
19 lines
557 B
HTML
19 lines
557 B
HTML
{{- /*
|
|
|
|
A version of the navbar-version-selector.html partial in Docsy,
|
|
modified to read the versions from /versions.json.
|
|
|
|
*/ -}}
|
|
|
|
{{ $changelog := site.GetPage "changelog" }}
|
|
{{ $pages := $changelog.RegularPages.ByDate.Reverse }}
|
|
|
|
<div class="dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
All Versions
|
|
</a>
|
|
<ul class="dropdown-menu" id="version-selector">
|
|
{{- /* The menu is built by versions.template.js */ -}}
|
|
</ul>
|
|
</div>
|