From 9e2dceba19a3f1591d983365f38084f5cbe7374b Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Sun, 8 Jan 2017 09:28:10 +0000 Subject: [PATCH] www: Add dates RSS news llvm-svn: 291388 --- polly/www/menu.css | 12 ++++-------- polly/www/menu.html.incl | 16 ++++++++-------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/polly/www/menu.css b/polly/www/menu.css index e1de1a1870a5..bb70a8f56f2f 100644 --- a/polly/www/menu.css +++ b/polly/www/menu.css @@ -82,14 +82,10 @@ li.rss-item { } .rss-date { - font-size: 0.8em; - color: #f35555; - padding-left: 0.4em; - margin-bottom: 2em; - padding-bottom: 2em; - text-align: right; - float: right; + font-size: 0.6em; + color: gray; } -h6 { +.rss-title { + font-size: 0.7em; margin: 0px; } diff --git a/polly/www/menu.html.incl b/polly/www/menu.html.incl index 4b5d3b644fb5..5459473bd632 100644 --- a/polly/www/menu.html.incl +++ b/polly/www/menu.html.incl @@ -45,7 +45,6 @@ Optimizations
-
polyhedral.info
@@ -76,34 +75,35 @@ $(document).ready(function() { "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20rss%20where%20url%3D%22http%3A%2F%2Fpollylabs.org%2Frss.xml%22%20LIMIT%205&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys"; $.getJSON(yql, function(res) { - console.log(res); str = "
"; - str = str + "
... more news
"; $( ".inner_pollylabs" ).append(str); - console.log(str); }, "jsonp"); var yql_polyinfo = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20rss%20where%20url%3D%22http%3A%2F%2Fpolyhedral.info%2Frss.xml%22%20LIMIT%205&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys"; $.getJSON(yql_polyinfo, function(res) { - console.log(res); str = "
"; - str = str + "
... more news
"; $( ".inner_polyinfo" ).append(str); console.log(str); }, "jsonp");