egroupware_official/doc/etemplate2/_includes/sidebar.njk
StefanU 00fe3dcf6b
Update sidebar.njk
Add Example app under Getting Startet
2024-04-12 10:14:37 +02:00

48 lines
1.7 KiB
Plaintext

<ul>
<li>
<h2>Getting Started</h2>
<ul>
<li><a href="/">Home</a></li>
<li><a href="https://github.com/EGroupware/egroupware/wiki/#Development">Development</a></li>
<li><a href="/getting-started/widgets">Widgets</a></li>
<li><a href="/getting-started/styling">Styling</a></li>
<li><a href="https://github.com/EGroupware/example">Example app</a></li>
</ul>
</li>
<li>
<h2>Resources</h2>
<ul>
<li><a href="https://help.egroupware.org/c/developers">Community</a></li>
<li><a href="https://www.egroupware.org/professional-support">Help &amp; Support</a></li>
<li><a href="https://github.com/EGroupware/egroupware/releases">Changelog</a></li>
<li><a href="https://lit.dev/docs/components/lifecycle/">Lit Lifecycle</a></li>
</ul>
</li>
<li>
<h2>Components</h2>
<ul>
<li><em><a href="/components/sandbox">Sandbox</a></em></li>
{% for component in meta.components %}
<li>
{% if component.tagName %}
<a href="/components/{{ component.tagName }}">
{{ component.name | classNameToComponentName }}
</a>
{% else %}
{{ component.name }}
{% endif %}
</li>
{% endfor %}
</ul>
</li>
<li>
<h2>Tutorials</h2>
<ul>
<li><a href="/tutorials/creating-a-widget">Creating a widget</a></li>
<li><a href="/tutorials/converting-to-webcomponents">Converting to WebComponent</a></li>
<li><a href="/tutorials/automatic-testing">Automatic testing</a></li>
<li><a href="https://github.com/EGroupware/example/tree/step5?tab=readme-ov-file">Implementing the linking system</a></li>
</ul>
</li>
</ul>