aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2016-07-02 22:14:57 +0200
committerAlex Legler <alex@a3li.li>2016-07-02 22:15:33 +0200
commit77572687eee4183849b567e8f29609c616177007 (patch)
tree4a64422d74764f4b194747c5b04e2aa16f48ae74 /support
parentUpdate the expire date of the 0xDB6B8C1F96D8BF6D signing key (portage snapshot). (diff)
downloadwww-77572687eee4183849b567e8f29609c616177007.tar.gz
www-77572687eee4183849b567e8f29609c616177007.tar.bz2
www-77572687eee4183849b567e8f29609c616177007.zip
Rework news item page
* Mention the items only concern the main repo * Syntax fixes * Remove incomplete authors list from overview table (#587534)
Diffstat (limited to 'support')
-rw-r--r--support/news-items/index.html14
1 files changed, 6 insertions, 8 deletions
diff --git a/support/news-items/index.html b/support/news-items/index.html
index 396aec7..5cf8701 100644
--- a/support/news-items/index.html
+++ b/support/news-items/index.html
@@ -14,7 +14,7 @@ nav2-show: true
<div class="alert alert-info">
<strong>Which items affect me?</strong>
<p>
- This page lists <strong>all</strong> available news items, but sometimes items don't affect you because you don't have the relevant package installed,
+ This page lists <strong>all</strong> available news items for the official Gentoo package repository, but sometimes items don't affect you because you don't have the relevant package installed,
or use a different architecture.
<br>
The <kbd>emerge</kbd> command notifies you after each operation if there are news items affecting your configuration:
@@ -33,17 +33,15 @@ nav2-show: true
<h2>Published News Items</h2>
-<table class="table table-striped">
+<table class="table table-condensed table-striped">
<tr>
- <th>Title</th>
- <th>Author</th>
<th>Date</th>
+ <th>Title</th>
</tr>
{% for entry in site.data.newsitems %}
<tr>
- <td><a href="{{ entry.url}}">{{ entry.title | xml_escape }}</a></td>
- <td>{{ entry.author | xml_escape }}</td>
- <td>{{ entry.date | xml_escape }}</td>
+ <td>{{ entry.date | xml_escape }}</td>
+ <td><a href="{{ entry.url }}">{{ entry.title | xml_escape }}</a></td>
</tr>
{% endfor %}
-</table> \ No newline at end of file
+</table>