{% extends "base.html"%} {% load static %} {% load markdown_tags %} {% block title%} - About{% endblock title %} {% block meta %} {% if about_config.seo %} {% endif %} {% endblock meta %} {% block content %} {% include "icons.html" %} {% comment %} TODO: include only used SVG's {% endcomment %}

About Me

{% if about_config.image %}
me
{% endif %}
{% spaceless %}
{% include '_social_accounts.html' %}
{% endspaceless %}

{{ about_config.intro_text }}

Skills

    {% for skill in about_config.skills_as_list %}
  • {{ skill }}
  • {% endfor %}

Tools

    {% for tool in about_config.tools_as_list %}
  • {{ tool }}
  • {% endfor %}

Interests

    {% for interesst in about_config.interessts_as_list %}
  • {{ interesst }}
  • {% endfor %}

{% if about_config.resume %} Resume {% endif %}

{{ about_config.markdown_content | markdown | safe }}


{% endblock content %}