Narrower headings in release history table for XS

This commit is contained in:
Thomas Jensen 2015-03-19 21:20:10 +01:00
parent b9df5c232a
commit f451b2b63c
2 changed files with 57 additions and 12 deletions

View File

@ -1,16 +1,9 @@
# Release History
{% comment %}
Release History
So far, there were these stable releases:
Release | Date | Sources | Binaries
------- | -------------- | --------------------------------------------------------------- | -----------
[1.1.2](https://github.com/{{ site.github }}/releases/tag/v1.1.2) | January 16, 2015 | [link](https://github.com/{{ site.github }}/tree/v1.1.2) | [link](https://github.com/{{ site.github }}/releases/tag/v1.1.2)
[1.1.1](https://github.com/{{ site.github }}/releases/tag/v1.1.1) | October 19, 2012 | [link](https://github.com/{{ site.github }}/tree/release_1.1.1) | [link](https://github.com/{{ site.github }}/releases/tag/v1.1.1)
[1.1](https://github.com/{{ site.github }}/releases/tag/v1.1) | July 23, 2006 | [link](https://github.com/{{ site.github }}/tree/release_1.1) | [link](https://github.com/{{ site.github }}/releases/tag/v1.1)
[1.0.1](https://github.com/{{ site.github }}/releases/tag/v1.0.1) | March 18, 2000 | [link](https://github.com/{{ site.github }}/tree/release_1.0.1) | [link](https://github.com/{{ site.github }}/releases/tag/v1.0.1)
[1.0](https://github.com/{{ site.github }}/releases/tag/v1.0) | August 22, 1999 | [link](https://github.com/{{ site.github }}/tree/release_1.0) | [link](https://github.com/{{ site.github }}/releases/tag/v1.0)
Sources and binaries for these releases are available from the above table.
The Release History table is in the releases.html file,
because we needed to be able to change column headings on small screens.
{% endcomment %}
## When to upgrade

View File

@ -5,5 +5,57 @@ title: Release History
{% capture includedMarkdown %}{% include boxes/docs/releases.md %}{% endcapture %}
<div class="bxpage well">
<h1 id="release-history">Release History</h1>
<p>So far, there were these stable releases:</p>
<table>
<thead>
<tr>
<th class="hidden-xs">Release</th>
<th class="visible-xs">Rel.</th>
<th>Date</th>
<th class="hidden-xs">Sources</th>
<th class="visible-xs">Src</th>
<th class="hidden-xs">Binaries</th>
<th class="visible-xs">Bin</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.1.2">1.1.2</a></td>
<td>January&nbsp;16, 2015</td>
<td><a href="https://github.com/{{ site.github }}/tree/v1.1.2">link</a></td>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.1.2">link</a></td>
</tr>
<tr>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.1.1">1.1.1</a></td>
<td>October&nbsp;19, 2012</td>
<td><a href="https://github.com/{{ site.github }}/tree/release_1.1.1">link</a></td>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.1.1">link</a></td>
</tr>
<tr>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.1">1.1</a></td>
<td>July&nbsp;23, 2006</td>
<td><a href="https://github.com/{{ site.github }}/tree/release_1.1">link</a></td>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.1">link</a></td>
</tr>
<tr>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.0.1">1.0.1</a></td>
<td>March&nbsp;18, 2000</td>
<td><a href="https://github.com/{{ site.github }}/tree/release_1.0.1">link</a></td>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.0.1">link</a></td>
</tr>
<tr>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.0">1.0</a></td>
<td>August&nbsp;22, 1999</td>
<td><a href="https://github.com/{{ site.github }}/tree/release_1.0">link</a></td>
<td><a href="https://github.com/{{ site.github }}/releases/tag/v1.0">link</a></td>
</tr>
</tbody>
</table>
<p>Sources and binaries for these releases are available from the above table.</p>
{{ includedMarkdown | markdownify }}
</div>