summaryrefslogtreecommitdiff
path: root/security/index.html
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2017-05-20 06:45:35 -0300
committerAilin Nemui <ailin@z30a.localdomain>2017-06-08 19:04:30 +0200
commitaaa8e1c2e3ba3651c383d1ab64172220ca675b0f (patch)
tree25292cba7aea7a0c1ef028ec040e3ddb79491e6e /security/index.html
parent53f1294fc2794e64f5b3be31f9eefcb16f876047 (diff)
downloadirssi.github.io-aaa8e1c2e3ba3651c383d1ab64172220ca675b0f.zip
security: tweak column widths, add nowrap, truncate git hash
Diffstat (limited to 'security/index.html')
-rw-r--r--security/index.html12
1 files changed, 5 insertions, 7 deletions
diff --git a/security/index.html b/security/index.html
index 3f0321e..5967534 100644
--- a/security/index.html
+++ b/security/index.html
@@ -6,7 +6,7 @@ categories: [ _nav ]
---
<table class="table">
<thead>
- <tr>
+ <tr class="text-nowrap">
<th>External links</th>
<th>Exploitable by</th>
<th>Affected versions</th>
@@ -22,18 +22,16 @@ categories: [ _nav ]
{% assign name = item[0] %}
{% assign values = item[1] %}
<tr>
- <td>
- <ul>
+ <td class="text-nowrap">
{% for link in values.external_links %}
- <li><a href="{{ link.url }}">{{ link.id }}</a></li>
+ <div><a href="{{ link.url }}">{{ link.id }}</a></div>
{% endfor %}
- </ul>
</td>
<td>{{ values.exploitable_by }}</td>
<td>{{ values.affected_versions }}</td>
<td>{{ values.fixed_version }}</td>
- <td>{{ values.release_date }}</td>
- <td><a href="https://github.com/irssi/{% if values.repo %}{{ values.repo }}{% else %}irssi{% endif %}/commit/{{ values.git_commit }}">{{ values.git_commit }}</a></td>
+ <td class="text-nowrap">{{ values.release_date }}</td>
+ <td><a href="https://github.com/irssi/{% if values.repo %}{{ values.repo }}{% else %}irssi{% endif %}/commit/{{ values.git_commit }}">{{ values.git_commit | truncate: 8, "" }}</a></td>
<td>{{ values.credit }}</td>
</tr>
{% endfor %}