2015-02-25 11:49:18 -08:00
|
|
|
- content_for :before_title, advertise_campaign_progress(@campaign)
|
2011-05-21 19:58:48 -07:00
|
|
|
- content_for :title_category do
|
2012-12-29 23:40:30 -08:00
|
|
|
#{t 'infinite_closet'}: #{t '.title_tagline'}
|
2010-11-05 15:45:05 -07:00
|
|
|
- content_for :before_flashes do
|
|
|
|
%h1
|
|
|
|
= link_to items_path do
|
2023-10-25 15:16:46 -07:00
|
|
|
= image_tag 'https://images.neopets.com/items/mall_floatingneggfaerie.gif'
|
2012-12-29 23:40:30 -08:00
|
|
|
%span= t 'infinite_closet'
|
2010-11-05 15:45:05 -07:00
|
|
|
- content_for :content do
|
2024-09-05 16:18:48 -07:00
|
|
|
= form_tag items_path, method: :get, class: "item-search-form" do
|
2014-02-26 22:21:20 -08:00
|
|
|
= text_field_tag :q, @query.to_s
|
2012-12-29 23:40:30 -08:00
|
|
|
= submit_tag t('.search'), :name => nil
|
2010-11-05 15:45:05 -07:00
|
|
|
= yield
|
2023-08-02 17:55:32 -07:00
|
|
|
= render template: 'layouts/application'
|
2011-05-20 17:23:37 -07:00
|
|
|
|