diff --git a/public/css/fontello.css b/public/css/fontello.css index 583ae79..a486b4b 100644 --- a/public/css/fontello.css +++ b/public/css/fontello.css @@ -1,11 +1,11 @@ @font-face { font-family: 'fontello'; - src: url('/fonts/fontello.eot?23617755'); - src: url('/fonts/fontello.eot?23617755#iefix') format('embedded-opentype'), - url('/fonts/fontello.woff2?23617755') format('woff2'), - url('/fonts/fontello.woff?23617755') format('woff'), - url('/fonts/fontello.ttf?23617755') format('truetype'), - url('/fonts/fontello.svg?23617755#fontello') format('svg'); + src: url('/fonts/fontello.eot?6327398'); + src: url('/fonts/fontello.eot?6327398#iefix') format('embedded-opentype'), + url('/fonts/fontello.woff2?6327398') format('woff2'), + url('/fonts/fontello.woff?6327398') format('woff'), + url('/fonts/fontello.ttf?6327398') format('truetype'), + url('/fonts/fontello.svg?6327398#fontello') format('svg'); font-weight: normal; font-style: normal; } @@ -49,7 +49,7 @@ .icon-retweet:before { content: '\e80d'; } /* '' */ .icon-search:before { content: '\e80e'; } /* '' */ .icon-pin:before { content: '\e80f'; } /* '' */ +.icon-heart:before { content: '\e811'; } /* '' */ .icon-cog:before { content: '\e812'; } /* '' */ .icon-rss-feed:before { content: '\e813'; } /* '' */ .icon-bird:before { content: '\f099'; } /* '' */ -.icon-thumbs-up:before { content: '\f164'; } /* '' */ diff --git a/public/fonts/fontello.eot b/public/fonts/fontello.eot index e88f016..0192b84 100644 Binary files a/public/fonts/fontello.eot and b/public/fonts/fontello.eot differ diff --git a/public/fonts/fontello.svg b/public/fonts/fontello.svg index fe483ef..e0f8e43 100644 --- a/public/fonts/fontello.svg +++ b/public/fonts/fontello.svg @@ -40,6 +40,8 @@ + + @@ -48,8 +50,6 @@ - - diff --git a/public/fonts/fontello.ttf b/public/fonts/fontello.ttf index c85f39c..0aebada 100644 Binary files a/public/fonts/fontello.ttf and b/public/fonts/fontello.ttf differ diff --git a/public/fonts/fontello.woff b/public/fonts/fontello.woff index 7ef7b1b..bb95c64 100644 Binary files a/public/fonts/fontello.woff and b/public/fonts/fontello.woff differ diff --git a/public/fonts/fontello.woff2 b/public/fonts/fontello.woff2 index 9f995ca..9f23ca1 100644 Binary files a/public/fonts/fontello.woff2 and b/public/fonts/fontello.woff2 differ diff --git a/src/views/tweet.nim b/src/views/tweet.nim index c5eb711..0539542 100644 --- a/src/views/tweet.nim +++ b/src/views/tweet.nim @@ -162,7 +162,7 @@ proc renderStats(stats: TweetStats; views: string): VNode = buildHtml(tdiv(class="tweet-stats")): span(class="tweet-stat"): icon "comment", $stats.replies span(class="tweet-stat"): icon "retweet", $stats.retweets - span(class="tweet-stat"): icon "thumbs-up", $stats.likes + span(class="tweet-stat"): icon "heart", $stats.likes if views.len > 0: span(class="tweet-stat"): icon "play", views