Make app-name link to landing page and change the start page to what-is-hawkbit.md

This commit is contained in:
Desislava Marinova
2026-03-25 17:43:15 +02:00
parent f2615fe812
commit 055d73c1fe
2 changed files with 6 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
[![Lines of code](https://img.shields.io/badge/dynamic/xml.svg?label=Lines%20of%20code&url=https%3A%2F%2Fwww.openhub.net%2Fprojects%2Fhawkbit.xml%3Fapi_key%3D30bc3f3fad087c2c5a6a67a8071665ba0fbe3b6236ffbf71b7d20849f4a5e35a&query=%2Fresponse%2Fresult%2Fproject%2Fanalysis%2Ftotal_code_lines&colorB=lightgrey)](https://www.openhub.net/p/hawkbit)
[![Join the chat at https://gitter.im/eclipse/hawkbit](https://badges.gitter.im/eclipse/hawkbit.svg)](https://gitter.im/eclipse/hawkbit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[Documentation](README)
[Documentation](what-is-hawkbit.md)
[Release notes](release-notes)
[GitHub](https://github.com/eclipse-hawkbit/hawkbit)

View File

@@ -62,8 +62,12 @@ SPDX-License-Identifier: EPL-2.0
svgEl.setAttribute('width', '200');
svgEl.removeAttribute('height');
svgEl.style.setProperty('--logo-color', '#F0EEEA');
var link = el.querySelector('a') || document.createElement('a');
link.href = '#/';
link.innerHTML = '';
link.appendChild(svgEl);
el.innerHTML = '';
el.appendChild(svgEl);
el.appendChild(link);
});
});
}