From d99b084ff65b6af4d9e41ea85c6237c05c940484 Mon Sep 17 00:00:00 2001 From: Fredo Erxleben <f.erxleben@hzdr.de> Date: Fri, 19 Jun 2020 14:42:02 +0200 Subject: [PATCH] Remove Roadmap --- _layouts/frontpage.html | 7 ----- _layouts/roadmap.html | 58 ----------------------------------------- roadmap/index.md | 14 ---------- 3 files changed, 79 deletions(-) delete mode 100644 _layouts/roadmap.html delete mode 100644 roadmap/index.md diff --git a/_layouts/frontpage.html b/_layouts/frontpage.html index 2fae74a1f..d2b09821c 100644 --- a/_layouts/frontpage.html +++ b/_layouts/frontpage.html @@ -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> diff --git a/_layouts/roadmap.html b/_layouts/roadmap.html deleted file mode 100644 index 6fd88b613..000000000 --- a/_layouts/roadmap.html +++ /dev/null @@ -1,58 +0,0 @@ -{% 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> diff --git a/roadmap/index.md b/roadmap/index.md deleted file mode 100644 index 0ae9467fc..000000000 --- a/roadmap/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -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 %} -- GitLab