Skip to content

Commit

Permalink
Add popular, top, trending bar
Browse files Browse the repository at this point in the history
  • Loading branch information
omarroth committed Jan 5, 2019
1 parent 7f8349d commit a16f967
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/invidious/views/index.ecr
Expand Up @@ -3,6 +3,30 @@
<title>Invidious</title>
<% end %>

<div class="h-box pure-g">
<div class="pure-u-1-4"></div>
<div class="pure-u-1 pure-u-md-1-2">
<div class="pure-g">
<div class="pure-u-1-3">
<a href="/feed/popular" style="text-align:center;" class="pure-menu-heading">
<%= translate(locale, "Popular") %>
</a>
</div>
<div class="pure-u-1-3">
<a href="/feed/top" style="text-align:center;" class="pure-menu-heading">
<%= translate(locale, "Top") %>
</a>
</div>
<div class="pure-u-1-3">
<a href="/feed/trending" style="text-align:center;" class="pure-menu-heading">
<%= translate(locale, "Trending") %>
</a>
</div>
</div>
</div>
<div class="pure-u-1-4"></div>
</div>

<div class="pure-g">
<% top_videos.each_slice(4) do |slice| %>
<% slice.each do |item| %>
Expand Down

0 comments on commit a16f967

Please sign in to comment.