Skip to content

Commit

Permalink
Rename roadmap to timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
David Wiessner committed Sep 23, 2024
1 parent 7af0a1d commit 1ca5935
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ navbar-links:
The Project:
- About: "about"
- Deliverables: "deliverables"
- Roadmap: "roadmap"
- Timeline: "timeline"
- Software: "software"
- Partners: "partners"
Team: "team"
Expand Down
2 changes: 1 addition & 1 deletion _data/roadmap.yml → _data/timeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
start_date: 2024-05-01
end_date: 2024-09-30
duration: null
percent_complete: 80
percent_complete: 100
dependencies: null

- task_id: "2024-11"
Expand Down
2 changes: 1 addition & 1 deletion deliverables.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tags:
- Work packages
---

All delivery results of the project are described here. The schedule and dependencies are described on the <a href="/roadmap">Roadmap page</a>.
All delivery results of the project are described here. The schedule and dependencies are described on the <a href="/timeline">Timeline page</a>.

Different components or organisational topics are being worked on within each work package.

Expand Down
2 changes: 1 addition & 1 deletion index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If you are interested or have any feedback, please contact us.
<div class="button-container">
<a href="/about" class="button">What is OpenEM?</a>
<a href="/deliverables" class="button">What does OpenEM deliver?</a>
<a href="/roadmap" class="button">How does OpenEM do it?</a>
<a href="/timeline" class="button">How does OpenEM do it?</a>
</div>

<br>
Expand Down
12 changes: 6 additions & 6 deletions roadmap.markdown
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
layout: page
title: Current Roadmap
permalink: /roadmap/
title: Current Timeline
permalink: /timeline/
subtitle: The time schedule for our project
tags:
- Project roadmap
- Project timeline
- Time schedule
- Project timeline
- Project details
- Project milestones
---

You can find a complete overview of everything this project delivers on the <a href="/deliverables">Deliverables</a> page. Sub-goals have been defined in the roadmap in order to visualise the course of the project over time.
You can find a complete overview of everything this project delivers on the <a href="/deliverables">Deliverables</a> page. Sub-goals have been defined in the timeline in order to visualise the course of the project over time.

The description of the individual components and their function can be found <a href="/software">here</a>.

Expand All @@ -26,10 +26,10 @@ The description of the individual components and their function can be found <a
google.charts.setOnLoadCallback(drawChart);

function loadYMLData() {
{% assign roadmap = site.data.roadmap %}
{% assign timeline = site.data.timeline %}
var rows = [];

{% for task in roadmap %}
{% for task in timeline %}
rows.push([
'{{ task.task_id }}',
'{{ task.task_name }}',
Expand Down

0 comments on commit 1ca5935

Please sign in to comment.