Commit ddb2ab69 authored by FulcrandG's avatar FulcrandG
Browse files

Adding an image to tables in index

parent 142d5d1d
Loading
Loading
Loading
Loading
+6 −10
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

| Name | Description |
| ---- | ----------- |
| {% if index["static_tests"][0].icon is defined -%} {{ index["static_tests"][0].icon }} {% endif %}[{{- index["static_tests"][0].name }}](static_tests"/{{ index["static_tests"][0].name }}/) <img width=50/> | {{ index["static_tests][0].description }} |
{% for job in index["static_tests"][1:] -%}
| <img width=250/> | |
{% for job in index["static_tests"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](static_tests/{{ job.name }}/) | {{ job.description }} |
{% endfor %}

@@ -17,8 +17,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

| Name | Description |
| ---- | ----------- |
| {% if index["build"][0].icon is defined -%} {{ index["build"][0].icon }} {% endif %}[{{- index["build"][0].name }}](build"/{{ index["build"][0].name }}/) <img width=50/> | {{ index["build"][0].description }} |
{% for job in index["build"][1:] -%}
{% for job in index["build"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](build/{{ job.name }}/) | {{ job.description }} |
{% endfor %}

@@ -26,8 +25,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

| Name | Description |
| ---- | ----------- |
| {% if index["dynamic_tests"][0].icon is defined -%} {{ index["dynamic_tests"][0].icon }} {% endif %}[{{- index["dynamic_tests"][0].name }}](dynamic_tests"/{{ index["dynamic_tests"][0].name }}/) <img width=50/> | {{ index["dynamic_tests"][0].description }} |
{% for job in index["dynamic_tests"][1:] -%}
{% for job in index["dynamic_tests"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](dynamic_tests/{{ job.name }}/) | {{ job.description }} |
{% endfor %}

@@ -35,8 +33,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

| Name | Description |
| ---- | ----------- |
| {% if index["review"][0].icon is defined -%} {{ index["review"][0].icon }} {% endif %}[{{- index["review"][0].name }}](review"/{{ index["review"][0].name }}/) <img width=50/> | {{ index["dynamic_tests"][0].description }} |
{% for job in index["review"][1:] -%}
{% for job in index["review"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](review/{{ job.name }}/) | {{ job.description }} |
{% endfor %}

@@ -44,7 +41,6 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

| Name | Description |
| ---- | ----------- |
| {% if index["deployment"][0].icon is defined -%} {{ index["deployment"][0].icon }} {% endif %}[{{- index["deployment"][0].name }}](deployment"/{{ index["deployment"][0].name }}/) <img width=50/> | {{ index["dynamic_tests"][0].description }} |
{% for job in index["deployment"][1:] -%}
{% for job in index["deployment"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](deployment/{{ job.name }}/) | {{ job.description }} |
{% endfor %}