{% extends "pages/menu.html" %}
{% load staticfiles %}
{% block css %}
{% endblock %}
{% block content %}
About Gargantext
-
Versions 3.*
- [NAME] Blue Jasmin
- [CODE] Refactored
- [DATABASE] New schema
- [INSTALL] Easy Docker
-
Versions 2.*
- [NAME] Red Lemon
- [NLP] Turbo Parser, MELT
- [FEATURE] Ngrams Table management
- [FEATURE] Annotation local view
- [FEATURE] Lexical Graph with temporal filter
- [FEATURE] Graph bi-Partite
-
Versions from 1.0 to 1.9
- [NAME] Rose Bonbon
- [Law] Licence of Gargantext is (and will be for next versions) AGPL
- [NLP] Turbo Parser, TreeTagger
- [FEATURE] Advanced Chart
- [FEATURE] Remove duplicates
-
Versions from 0.1 to 0.9
- [NAME] Black Salade
- [Law] Licence of Gargantext is GPL v3+
- [NLP] NLTK, TreeTagger
- [FEATURE] Graph Explorer
{% if team %}
{% for member in team %}
{% if member.picture %}

{% else %}

{% endif %}
{{ member.first_name }} {{member.last_name }}
{% if member.role %}
{{ member.role }}
{% endif %}
{% if member.mail %}
Mail
{% endif %}
{% if member.website %}
Website
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}