Add downloads page and navigation link to site

This commit is contained in:
Sergey Chernov 2026-04-02 19:27:19 +03:00
parent 7578128689
commit 62520f6203
2 changed files with 16 additions and 0 deletions

11
docs/downloads.md Normal file
View File

@ -0,0 +1,11 @@
# Some resources to download
## Lync CLI tool
- [lyng-linuxX64.zip](/distributables/lyng-linuxX64.zip) CLI tool for linuxX64: nodependencies, small monolith executable binary.
## IDE plugins
- [lyng-textmate.zip](../../lyng/distributables/lyng-textmate.zip) Texmate-compatible bundle with syntax coloring (could be outdated)
- [lyng-idea-0.0.5-SNAPSHOT.zip](/distributables/lyng-idea-0.0.5-SNAPSHOT.zip) - plugin for IntelliJ-compatible IDE

View File

@ -413,6 +413,9 @@
</li> </li>
</ul> </ul>
</li> </li>
<li class="nav-item">
<a class="nav-link" href="#/docs/downloads.md" data-route="downloads">Downloads</a>
</li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="#/tryling" data-route="tryling">Try in browser</a> <a class="nav-link" href="#/tryling" data-route="tryling">Try in browser</a>
</li> </li>
@ -492,6 +495,8 @@
var activeLink = null; var activeLink = null;
if (!hash || hash === '#' || hash === '#/') { if (!hash || hash === '#' || hash === '#/') {
activeLink = document.querySelector('#topbarNav .nav-link[data-route="home"]'); activeLink = document.querySelector('#topbarNav .nav-link[data-route="home"]');
} else if (hash.startsWith('#/docs/downloads.md')) {
activeLink = document.querySelector('#topbarNav .nav-link[data-route="downloads"]');
} else if (hash.startsWith('#/docs/') || hash.startsWith('#/authors')) { } else if (hash.startsWith('#/docs/') || hash.startsWith('#/authors')) {
// Mark Docs menu root as active // Mark Docs menu root as active
activeLink = document.querySelector('#topbarNav .nav-link.dropdown-toggle'); activeLink = document.querySelector('#topbarNav .nav-link.dropdown-toggle');