Sha256: 32aa3f02732b2445c155a004cd7ffc30f686cf686e18cba31907c366bf0dd576
Contents?: true
Size: 1.66 KB
Versions: 8
Compression:
Stored size: 1.66 KB
Contents
<%- set_title 'Manage Navigation Links' -%> <%= tabset do -%> <%= tab_tag(:id => 'primary_nav', :label => 'Main Navigation', :state => 'active') %> <%= tab_tag(:id => 'secondary_nav', :label => 'Secondary Navigation') %> <%= tab_tag(:id => 'footer_nav', :label => 'Footer Navigation') %> <%- end -%> <%= tab_body :id => 'primary_nav', :label => SiteLogic.primary_nav.label, :help => SiteLogic.primary_nav.description, :display => 'block' do -%> <%= render :partial => 'index', :locals => {:nav_items => @site.nav_items.primary.roots, :navitem_type => 'primary'} -%> <br style="clear: both;" /> <div class="link_block"> <%= link_to 'New Navigation Link', new_admin_site_nav_item_path(@site), :class => 'link_button' -%> </div> <%- end -%> <%= tab_body :id => 'secondary_nav', :label => SiteLogic.secondary_nav.label, :help => SiteLogic.secondary_nav.description, :display => 'none' do -%> <%= render :partial => 'index', :locals => {:nav_items => @site.nav_items.secondary.roots, :navitem_type => 'secondary'} -%> <br style="clear: both;" /> <div class="link_block"> <%= link_to 'New Navigation Link', new_admin_site_nav_item_path(@site, :kind => 'Secondary'), :class => 'link_button' -%> </div> <%- end -%> <%= tab_body :id => 'footer_nav', :label => SiteLogic.footer_nav.label, :help => SiteLogic.footer_nav.description, :display => 'none' do -%> <%= render :partial => 'index', :locals => {:nav_items => @site.nav_items.footer.roots, :navitem_type => 'footer'} -%> <br style="clear: both;" /> <div class="link_block"> <%= link_to 'New Navigation Link', new_admin_site_nav_item_path(@site, :kind => 'Footer'), :class => 'link_button' -%> </div> <%- end -%>
Version data entries
8 entries across 8 versions & 1 rubygems