diff --git a/_includes/project_tablecard.html b/_includes/project_tablecard.html index 0b20715..e5f7e33 100644 --- a/_includes/project_tablecard.html +++ b/_includes/project_tablecard.html @@ -2,8 +2,8 @@
- -
@@ -47,8 +63,8 @@

- -
-
-

- All details will be finished to fully support community - nodes in the network. (This does not include the planned - compensation for running a node.) There will be a website - to easily get you started. -

+
+

+ {% for paragraph in card.description %} + {{ paragraph }} + {% endfor %} +


diff --git a/roadmapblog/index.html b/roadmapblog/index.html index 47f390e..4dfa02a 100644 --- a/roadmapblog/index.html +++ b/roadmapblog/index.html @@ -26,36 +26,47 @@ layout: page
-
-
-

Completed

-

This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.

+ {% if site.data.next.cards.done.size > 0 %} +
+
+

Completed

+

This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.

+
+
+ {% for card in site.data.next.cards.done %} + {% include project_tablecard.html state = 'done' %} + {% endfor %} +
-
- {% include project_tablecard.html %} - {% include project_tablecard.html %} - {% include project_tablecard.html %} -
-
-
-
-

In Progress

-

This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.

-
-
- {% include project_tablecard.html %} -
-
-
-
-

Abandoned

-

This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.

-
-
- {% include project_tablecard.html %} -
-
+ {% endif %} + {% if site.data.next.cards.in_progress.size > 0 %} +
+
+

In Progress

+

This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.

+
+
+ {% for card in site.data.next.cards.in_progress %} + {% include project_tablecard.html state = 'in_progress' %} + {% endfor %} +
+
+ {% endif %} + + {% if site.data.next.cards.discarded.size > 0 %} +
+
+

Discarded

+

This is a list of the tasks we have completed in this month time frame. If you wish to find more about each task, click them have a read.

+
+
+ {% for card in site.data.next.cards.discarded %} + {% include project_tablecard.html state = 'discarded' %} + {% endfor %} +
+
+ {% endif %}