tags: set @title

tweak @title of filters controller
This commit is contained in:
joshua stein 2015-11-09 10:01:43 -06:00
parent 09fd14dd93
commit 97dac71389
2 changed files with 4 additions and 1 deletions

View file

@ -3,7 +3,7 @@ class FiltersController < ApplicationController
def index
@cur_url = "/filters"
@title = "Filtered Tags"
@title = "Tag Filters"
@tags = Tag.active.all_with_story_counts_for(@user)

View file

@ -1,5 +1,8 @@
class TagsController < ApplicationController
def index
@cur_url = "/tags"
@title = "Tags"
@tags = Tag.all_with_story_counts_for(nil)
respond_to do |format|