Skip to content

Commit

Permalink
Remove whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidwong committed May 30, 2016
1 parent ceb0687 commit 05d9ff5
Showing 1 changed file with 50 additions and 50 deletions.
100 changes: 50 additions & 50 deletions _includes/feature-table.html
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
<table>
<thead>
<tr>
<th>Feature Name</th>
<th>Issue</th>
<th>Developer(s)</th>
<th>Status</th>
<th>Last Update</th>
<th>See Also</th>
</tr>
</thead>
<tbody>
{% for feature in site.data.features %}
<tr>
<td>
{{ feature.name }}
</td>
<td>
<a href="https://github.com/QubesOS/qubes-issues/issues/{{ feature.issue }}">{{ feature.issue }}</a>
</td>
<td>
{% if feature.devs%}
{{ feature.devs }}
<table>
<thead>
<tr>
<th>Feature Name</th>
<th>Issue</th>
<th>Developer(s)</th>
<th>Status</th>
<th>Last Update</th>
<th>See Also</th>
</tr>
</thead>
<tbody>
{% for feature in site.data.features %}
<tr>
<td>
{{ feature.name }}
</td>
<td>
<a href="https://github.com/QubesOS/qubes-issues/issues/{{ feature.issue }}">{{ feature.issue }}</a>
</td>
<td>
{% if feature.devs%}
{{ feature.devs }}
{% else %}
(none)
{% endif %}
</td>
<td>
{% if feature.status.code %}
{% if feature.status.url %}
<a href="{{ feature.status.url }}">{{ feature.status.code }}</a>
{% else %}
(none)
{{ feature.status.code }}
{% endif %}
</td>
<td>
{% if feature.status.code %}
{% if feature.status.url %}
<a href="{{ feature.status.url }}">{{ feature.status.code }}</a>
{% else %}
{{ feature.status.code }}
{% endif %}
{% else %}
Planning
{% else %}
Planning
{% endif %}
</td>
<td>
<a href="{{ feature.updated.url }}">{{ feature.updated.date }}</a>
</td>
<td>
{% for info in feature.info %}
{% if info.type %}
[<a href="{{ info.url }}">{{ info.type }}</a>]
{% endif %}
</td>
<td>
<a href="{{ feature.updated.url }}">{{ feature.updated.date }}</a>
</td>
<td>
{% for info in feature.info %}
{% if info.type %}
[<a href="{{ info.url }}">{{ info.type }}</a>]
{% endif %}
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
<hr>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
<hr>

0 comments on commit 05d9ff5

Please sign in to comment.