Skip to content
Snippets Groups Projects
Verified Commit d99b084f authored by Erxleben, Fredo's avatar Erxleben, Fredo
Browse files

Remove Roadmap

parent 4f1cd755
No related branches found
No related tags found
No related merge requests found
......@@ -30,10 +30,6 @@
</div>
<div class="frontpage-mission-jumbotron">
{% include wide_image.html
file_name = "luke-stackpoole-ZRsJmpt9pNI-unsplash.jpg"
alt_text = "Image: Road forward"%}
<section>
<h1>The Mission</h1>
<p class="lead">HIFIS Software Services' mission is to empower scientists of any domain to implement
......@@ -45,9 +41,6 @@
<a href="{{ 'faq' | relative_url }}" class="btn btn-outline-light">
<i class="fas fa-question-circle" aria-hidden="true"></i> FAQ
</a>
<a href="{{ 'roadmap' | relative_url }}" class="btn btn-outline-light">
<i class="fas fa-road" aria-hidden="true"></i> Roadmap
</a>
</p>
</section>
</div>
......
{% include top.html %}
<body>
{% include header.html %}
<main>
{% include title_image.html%}
{% assign sorted_roadmap = site.roadmap | sort: "date" %}
{% assign service_names = "Education and Training,Consulting Services,Technology Services,Communities" | split: "," %}
{% assign unique_dates = sorted_roadmap | map: "date" | uniq | sort %}
{% assign year = "1999" %}
{% assign did_first_section = false %}
<section>
<div class="timeline">
{% 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 %}
<div class="roadmap-year">{{ newyear }}</div>
{% endif %}
<div class="roadmap-month">
<div class="timeline-bubble"></div>
<div class="month-text">{{ date_item | date: "%B %Y" }}</div>
</div>
<div class="roadmap-item">
{% for roadmap_item in sorted_roadmap_by_date %}
{% assign service_short = roadmap_item.service | capitalize %}
<article>
{% for service_name in service_names %}
{% if service_name contains service_short %}
<div class="service_name">{{ service_name }}</div>
{% endif %}
{% endfor %}
<p>{{ roadmap_item.content | markdownify }}</p>
</article>
{% endfor %}
</div>
{% endfor %}
</div>
</section>
</main>
{% include footer.html %}
</body>
</html>
---
title: Roadmap
title_image: jamie-templeton-6gQjPGx1uQw-unsplash.jpg
layout: roadmap
excerpt:
"The roadmap of HIFIS Software summarises our goals to be achieved
in the upcoming years. It is meant to announce which targets are met
when and gives you an overview about the topics we are working on."
---
{% comment %}
This markdown file triggers the generation of the roadmap page.
Only the frontmatter is required by Jekyll.
The contents section does not get rendered into HTML on purpose.
{% endcomment %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment