<div id="pagetitle"> <h3>Welcome to UNL Resource Scheduler<span class="wdn-subhead"><%= @user.full_name %></span></h3> </div> <% if spaces.empty? %> Sorry, you don't have any spaces right now. If you'd like to use UNL Resource Scheduler for your organization, please request a service space here. <% else %> <h5 class="wdn-center wdn-brand">Your Service Spaces</h5> <div class="wdn-grid-set-thirds"> <% spaces.each do |space| %> <div class="wdn-col wdn-center"> <a href="<%= space.href %>"> <div class="space-image"> <% if space.imagedata.nil? %> <img src="/images/wordmark02.svg" alt="Image for Space: <%= space.name %>"> <% else %> <img src="<%= space.image_src %>" alt="Image for Space: <%= space.name %>"> <% end %> </div> <%= space.name %> </a> </div> <% end %> </div> <% end %>