diff --git a/_includes/centos-around.html b/_includes/centos-around.html
index 9d3c89b..4dcfc17 100644
--- a/_includes/centos-around.html
+++ b/_includes/centos-around.html
@@ -1,8 +1,13 @@
+
-Around CentOS
-
-{% assign channels = site.data.centos.planet.rss.channel %}
-{% for i in channels limit:12 %}{% if forloop.index > 4 %}
-- {{ i.item.title }}
{{ i.item.description | strip_html | slice: 0,150 }}...
-{% endif %}{% endfor %}
-
+ Around CentOS
+
+
+ {% assign entries = site.data.centos.planet %}
+ {% for i in entries limit:8 %}
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
+ - {{ i.title }}
{{ i.published | date: date_format }} — {{ i.summary | strip_html | slice: 0,150 }}...
+ {% endfor %}
+
+
+