39 lines
No EOL
885 B
Text
39 lines
No EOL
885 B
Text
<div class="focus">
|
|
<div class="focusleft">
|
|
<p>Person</p>
|
|
<%= image_tag "person.png", :class => 'icon' %>
|
|
</div>
|
|
<div class="focusmiddle">
|
|
<h1 class="title"><%= @person.name %></h1>
|
|
<div class="desc">
|
|
<h3>About</h3>
|
|
<p><%= @person.desc %></p>
|
|
</div>
|
|
</div>
|
|
<div class="focusright">
|
|
<p>Link</p>
|
|
<%= link_to @person.link, @person.link, :class => 'link' %>
|
|
</div>
|
|
<div class="clearfloat"></div>
|
|
</div>
|
|
<div class="clearfloat nodemargin"></div>
|
|
|
|
<div class="groups">
|
|
<% @gparents.each do |group| %>
|
|
<%= render group %>
|
|
<% end %>
|
|
<% if @gparents.empty? %>
|
|
<p><br>Shucks, there are no groups.<p>
|
|
<% end %>
|
|
</div>
|
|
<div class="clearfloat"></div>
|
|
|
|
<div class="items">
|
|
<% @ichildren.each do |item| %>
|
|
<%= render item %>
|
|
<% end %>
|
|
<% if @ichildren.empty? %>
|
|
<p><br>Shucks, there are no items.<p>
|
|
<% end %>
|
|
</div>
|
|
<div class="clearfloat"></div> |