{% load static %}

{{ user.name_eng }}

{% if user.mailAddress %} {{ user.mailAddress }} {% endif %} {% if user.personal_website %} {{ user.personal_website }} {% endif %}
PUBLICATIONS {% for year,publications in publication_year_list.items %}
{{ year }}
{% if publications %} {% for publication in publications %}
  • {{ publication.date }} {{ publication.title }}
  • {{ publication.authors }} {{ publication.publishType }} {{ publication.journalname }}
{% endfor %} {% endif %}
{% endfor %}
{% if cve_year_list.items %}
MY-CVE {% for year, cves in cve_year_list.items %}
{{ year }}
{% if cves %}
    {% for cve in cves %}
  • {{ cve.datetime }} {{ cve.identifier }} {{ cve.software }} {{ cve.bugType }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %}