Skip to content

Commit ace4907

Browse files
committed
Remove dates from individual news index stories
Organizing stories within a dated group made these redundant.
1 parent ff84b83 commit ace4907

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

client/javascripts/components/modules/loadStories.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ JS.Modules.LoadStories = (function() {
7272
'</h2>' +
7373
'<p class="tcs tfh">' +
7474
'via ' + '<span class="twsb">' + story.name + '</span>' +
75-
' | ' + '<time class="tsi">' + story.date + '</time>' +
7675
' | ' + '<a class="' + commentClass(story.comment_count) + '" href="/news/' + story.slug + '#comments">View Discussion ' + commentNumber(story.comment_count) + '</a>' +
7776
'</p>' +
7877
'<p class="tcs tfh">' + story.body + '</p>' +

views/news/index.jade

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ block content
6565
| via
6666
span.twsb= story.name
6767
| |
68-
time.tsi= story.date
69-
| |
7068
a(href='/news/' + story.slug + '#comments')
7169
| View Discussion
7270
if story.comment_count > 0

0 commit comments

Comments
 (0)