diff --git a/_layouts/default.html b/_layouts/default.html
index 722e3dcfc..e60212977 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -53,7 +53,6 @@
@@ -79,13 +78,20 @@
Community
+
diff --git a/css/main.css b/css/main.css
index 9b8ea866f..50c3a681b 100644
--- a/css/main.css
+++ b/css/main.css
@@ -167,7 +167,6 @@ a.media-subheading:hover {
font-size: smaller;
color: gray;
margin-top: 0;
- margin-left: 0.5em;
}
pre.inline {
@@ -176,6 +175,14 @@ pre.inline {
margin: 0 5px;
}
+.commit {
+ margin-bottom: 10px;
+}
+
+.commit p {
+ margin: 0;
+}
+
/*-----------------------------------------------------------------------------
* Static pages
*/
diff --git a/index.html b/index.html
index 0e1103d3f..72f716c0d 100644
--- a/index.html
+++ b/index.html
@@ -26,10 +26,11 @@ root: .
Proven tech
Torque has been around for a while, and it's been used for everything
- from driving simulators to MMOs to interactive coral reefs.
+ from driving simulators to MMOs to interactive coral reefs. Still
+ not convinced?
- Games made with Torque
+ See some games
@@ -52,7 +53,7 @@ root: .
bottom line to meet.
- Get involved
+ Get involved
@@ -86,7 +87,7 @@ root: .
| Current version |
- 3.6.1 |
+ 3.6.2 |
| Continuous integration |
@@ -187,21 +188,20 @@ $(document).ready(function() {
if(data.responseData.feed && data.responseData.feed.entries) {
var list = $('').addClass('list-unstyled');
$.each(data.responseData.feed.entries, function (i, e) {
- var li = $('').appendTo(list);
+ var li = $('').addClass('commit').appendTo(list);
var hash = e.link.split('/').pop().substr(0, 6);
+
+ var content = e.contentSnippet.split('\n').pop();
+ li.append($('').text(content));
+
var hashel = $('').addClass('inline').appendTo(li);
hashel.append($('')
.text(hash)
.attr('href', e.link)
.attr('target', '_blank'));
- var content = e.contentSnippet.split('\n').pop();
- li.append($('')
- .addClass('commit')
- .text(content));
-
var d = new Date(e.publishedDate);
- var stamp = $('').addClass('timeago').text('by ' + e.author + ' ').appendTo(li);
+ var stamp = $('').addClass('timeago').text('by ' + e.author + ' ').appendTo(li);
stamp.append($('')
.attr('title', d.toISOString())
.timeago());