Sha256: 26cd216a09603c6b93e5131cedcec3ce3152abf4c643adcd1d34a338a98dea60

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

<%= render :partial=>'background_updater' %>
<div class="row-fluid">

  <div class="span8 umlaut-main"> 
    
    <div class="umlaut-resource-info">
          <div class="resource_info_sections">
            <%= render :partial=> "manually_entered_warning" %>

            <%= render :partial=>'citation' %>
            <% html_sections(:resource_info).each do |section| %>
              <%= content_tag "div", :id => section[:div_id] do %>
                <%= render_section(section) %>
              <% end %>
            <% end %>
          </div>
          
          <%# need a div here for ajax bg loader to put bg loaded cover into %>
          <div id="cover_image">
            <%= render_section(html_section_by_div_id("cover_image")) %>
          </div>

    </div>

    <div class="main_response_list">
      <% html_sections(:main).each do |section| %>
        <%= content_tag "div", :id => section[:div_id] do %>
          <%= render_section(section) %>
        <% end %>
      <% end %>
    </div>
</div>

  <div class="span4 umlaut-sidebar">
    <% html_sections(:sidebar).each do |section| %>
      <%= content_tag "div", :id => section[:div_id] do %>
        <%= render_section(section) %>
      <% end %>
    <% end %>
    <div id="service_errors">
      <% html_sections(:service_errors).each do |section| %>
        <%= render_section(section) %>
      <% end %>
    </div>
  </div>
  <%= render :partial=>"modal" %>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
umlaut-3.1.1 app/views/resolve/index.html.erb
umlaut-3.1.0 app/views/resolve/index.html.erb
umlaut-3.1.0.pre2 app/views/resolve/index.html.erb
umlaut-3.1.0.pre1 app/views/resolve/index.html.erb