{% include top.html %} {% include header.html %}
{% include title_image.html%} {% assign sorted_roadmap = site.roadmap | sort: "date" %} {% assign service_names = "Backbone Services,Cloud Services,Software Services,HIFIS Overall" | split: "," %} {% assign unique_dates = sorted_roadmap | map: "date" | uniq | sort %} {% assign year = "1999" %}
{% for date_item in unique_dates %} {% assign sorted_roadmap_by_date = sorted_roadmap | where_exp: "roadmap", "roadmap.date == date_item" %} {% assign newyear = date_item | date: "%Y" %} {% if newyear != year %} {% assign year = newyear %}

{{ newyear }}

{% endif %}

{{ date_item | date: "%B %Y" }}

{% for roadmap_item in sorted_roadmap_by_date %} {% assign service_short = roadmap_item.service | capitalize %}
{% for service_name in service_names %} {% if service_name contains service_short %} {{ service_name }} {% endif %} {% endfor %} {{ roadmap_item.content | markdownify }}
{% endfor %}
{% endfor %}
{% include footer.html %}