diff --git a/app/views/explore/posts/searches.html.erb b/app/views/explore/posts/searches.html.erb index abb2d6a0b..f41cdb13a 100644 --- a/app/views/explore/posts/searches.html.erb +++ b/app/views/explore/posts/searches.html.erb @@ -23,15 +23,18 @@ View by <%= link_to "day", searches_explore_posts_path(:date => params[:date], :scale => "day") %> | <%= link_to "week", searches_explore_posts_path(:date => params[:date], :scale => "week") %> | + <%= link_to "month", searches_explore_posts_path(:date => params[:date], :scale => "month") %> | <%= link_to "year", searches_explore_posts_path(:date => params[:date], :scale => "year") %>. Back one <%= link_to "day", searches_explore_posts_path(:date => 1.day.ago(@date), :scale => params[:scale]) %> | - <%= link_to "week", searches_explore_posts_path(:date => 1.week.ago(@date), :scale => params[:scale]) %>. + <%= link_to "week", searches_explore_posts_path(:date => 1.week.ago(@date), :scale => params[:scale]) %> | + <%= link_to "month", searches_explore_posts_path(:date => 1.month.ago(@date), :scale => params[:scale]) %>. Forward one <%= link_to "day", searches_explore_posts_path(:date => 1.day.since(@date), :scale => params[:scale]) %> | - <%= link_to "week", searches_explore_posts_path(:date => 1.week.since(@date), :scale => params[:scale]) %>. + <%= link_to "week", searches_explore_posts_path(:date => 1.week.since(@date), :scale => params[:scale]) %> | + <%= link_to "month", searches_explore_posts_path(:date => 1.month.since(@date), :scale => params[:scale]) %>.