# Other Libraries
Here you can find an overview of my main libraries that do all play well together including some short descriptions.
{% macro table_row(project) %}
{% if project["image"] is defined %}
|
{% endif %}
{{ project["name"] }}
| {{ project["description"] }}
 |
{% endmacro %}
{% for key, value in other_projects["libraries"].items() %}
{% set ns = namespace(image=false) %}
{% for prj in value %}
{% if prj["name"] != project["library"]["name"] and prj["name"] != "Toolbox" %}
{% if prj["image"] is defined %}
{% set ns.images = true %}
{% endif %}
{% endif %}
{% endfor %}
{{key}}
{% if ns.images %}
| Image |
{% endif %}
Library |
Description |
{% for prj in value %}
{% if prj["name"] != project["library"]["name"] and prj["name"] != "Toolbox" %}
{{ table_row(prj) }}
{% endif %}
{% endfor %}
{% endfor %}