{%- 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" -%} {%- assign month = "None" %}
{%- 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" -%} {%- capture today -%}{{ 'now' | date: '%s'}}{%- endcapture -%} {%- capture thisyear -%}{{ 'now' | date: '%Y'}}{%- endcapture -%} {%- capture roadmap_item_time -%}{{ date_item | date: '%s'}}{%- endcapture -%} {%- capture roadmap_item_year -%}{{ date_item | date: '%Y'}}{%- endcapture -%} {%- assign days_since = today | minus: roadmap_item_time | divided_by: 86400 -%} {%- comment -%} Show the last three months in the past OR everything from this year {%- endcomment -%} {%- if days_since > 90 and roadmap_item_year < thisyear -%} {%- assign hidden_class = "hidden expand" -%} {%- else -%} {%- assign hidden_class = "" -%} {%- endif -%} {%- if newyear != year -%} {%- assign year = newyear -%}

{{ newyear }}

{%- endif -%} {% assign roadmap_month = date_item | date: "%B" %} {%- if month != roadmap_month -%}

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

{%- else -%}
{%- endif -%} {% assign month = roadmap_month %}
{%- 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 -%}