Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 848 Bytes

technologies.md

File metadata and controls

28 lines (25 loc) · 848 Bytes
layout title permalink
page
Technologies
/technologies/

Technologies I worked with:

{% assign tech = "" %} {% for project in site.projects %} {% if project.technologies | size > 0 %} {% assign array = project.technologies | join:'|' | append:'|' %} {% assign tech = tech | append: array %} {% endif %} {% endfor %} {% assign unique_tech = tech | split:'|' | uniq %}

{% for t in unique_tech %} {% assign info = site.data.tech[t] %}

  • {{ t }} - {{ info.type }} {% if info.url %}{{ info.url }}{% endif %} {% for project in site.projects %} {% if project.technologies contains t %}
    • {{ project.date | date: "%Y" }}: [{{ project.title }}]({{ project.url }}) {% endif %} {% endfor %} {% endfor %}