egroupware_official/doc/etemplate2/_includes/sidebar.njk

48 lines
1.7 KiB
Plaintext
Raw Normal View History

<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>
2024-04-11 11:26:15 +02:00
<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>
2023-09-22 23:03:37 +02:00
<li><em><a href="/components/sandbox">Sandbox</a></em></li>
{% for component in meta.components %}
<li>
2023-09-27 22:07:41 +02:00
{% if component.tagName %}
<a href="/components/{{ component.tagName }}">
{{ component.name | classNameToComponentName }}
</a>
2023-09-27 22:07:41 +02:00
{% else %}
{{ component.name }}
{% endif %}
</li>
{% endfor %}
</ul>
</li>
<li>
<h2>Tutorials</h2>
<ul>
2023-09-22 23:03:37 +02:00
<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>