2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-04-27 21:16:45 +00:00
inventree-website/plugins.html
2023-01-28 15:54:50 +01:00

22 lines
965 B
HTML

---
layout: default
title: Plugin List
permalink: /plugins
---
<div class="pt-3 pb-1 section-container">
<h1 class="header-text title-font mb-4 cm-gray-1">InvenTree Plugin List</h1>
<p>
InvenTree is a modular application and can be extended with plugins. This list is a collection of plugins that have been developed by the community.
Beeing on this list does not mean that the plugin is officially supported by the InvenTree core team. We also do not check for security, privacy or performance issues or compatibility with the latest InvenTree version.
<br><br>
You can also browse for plugins by <a href="{% link tags.html %}" class="color-link">tags</a> or <a href="{% link categories.html %}" class="color-link">categories</a></p>
<div class="flex flex-wrap">
{% for plugin in site.repo %}
<div class="space-4 p-2 md:w-1/2">
{% include plugin_card.html plugin=plugin %}
</div>
{% endfor %}
</div>
</div>