60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
<div class="contentbox color-1-dark">
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<div class="media">
|
|
<%= link_to themengruppe do %>
|
|
|
|
<span class="pull-left">
|
|
<% if themengruppe.icon.nil? or themengruppe.icon.empty? %>
|
|
<%= image_tag themengruppe.picture.thumb.url,{:class=>"img-rounded"} %>
|
|
<% end %>
|
|
|
|
</span>
|
|
|
|
<div class="media-body">
|
|
|
|
<h3>
|
|
<% unless themengruppe.icon.nil? or themengruppe.icon.empty? %> <i class="<%= themengruppe.icon %>" style="font-size:1.5em;margin:0"></i>
|
|
<% end %>
|
|
|
|
<%= themengruppe.title%> </h3>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row-fluid">
|
|
<div class="span6">
|
|
<%= link_to themengruppe do %>
|
|
|
|
<p>
|
|
<%= if !themengruppe.text.nil? && themengruppe.text.split.size > Themengruppe::WORD_COUNT
|
|
themengruppe.text.split[0..Themengruppe::WORD_COUNT].join(" ") + " ..."
|
|
else
|
|
themengruppe.text
|
|
end%>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="span6">
|
|
<!--<b><%= I18n.t("themengruppe.themen") %></b>
|
|
-->
|
|
<ul>
|
|
<% themengruppe.themen.where(:hidelink=>false).where(:isdraft=>false).each do |t| %>
|
|
<li>
|
|
<%= link_to t do %>
|
|
<%= render t %> <% end %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|