fix wrong html structure for announcement frontend
This commit is contained in:
parent
1d80b39dcb
commit
614b6fde71
|
@ -5,7 +5,6 @@
|
||||||
<h1 class="h1"><%= @page.title rescue nil %></h1>
|
<h1 class="h1"><%= @page.title rescue nil %></h1>
|
||||||
|
|
||||||
<% if !@item.frontend_field.blank? %>
|
<% if !@item.frontend_field.blank? %>
|
||||||
|
|
||||||
<% if @frontend_style == '1' %>
|
<% if @frontend_style == '1' %>
|
||||||
|
|
||||||
<div class="news news1">
|
<div class="news news1">
|
||||||
|
@ -18,8 +17,8 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<% @bulletins.each do |post| %>
|
<% @bulletins.each do |post| %>
|
||||||
<% @item.frontend_field.each do |ff| %>
|
|
||||||
<tr class="<%= cycle('odd', '')%>">
|
<tr class="<%= cycle('odd', '')%>">
|
||||||
|
<% @item.frontend_field.each do |ff| %>
|
||||||
<td>
|
<td>
|
||||||
<span class="<%= ff[1] %>">
|
<span class="<%= ff[1] %>">
|
||||||
<% if ff[1] == 'title' %>
|
<% if ff[1] == 'title' %>
|
||||||
|
@ -27,7 +26,7 @@
|
||||||
<% elsif ff[1] == 'date' %>
|
<% elsif ff[1] == 'date' %>
|
||||||
<%= display_date(post.send(ff[0])) %>
|
<%= display_date(post.send(ff[0])) %>
|
||||||
<% elsif ff[1] == 'category' %>
|
<% elsif ff[1] == 'category' %>
|
||||||
<%= post.send("#{post.class.to_s.underscore}_#{ff[0]}").title rescue nil %>
|
<%= post.send(ff[0]).title rescue nil %>
|
||||||
<% elsif ff[1] == 'img' %>
|
<% elsif ff[1] == 'img' %>
|
||||||
<div class="img app-pic"><%= image_tag(post.send(wf[0]).url) %></div>
|
<div class="img app-pic"><%= image_tag(post.send(wf[0]).url) %></div>
|
||||||
<% elsif ff[1] == 'text' %>
|
<% elsif ff[1] == 'text' %>
|
||||||
|
@ -50,8 +49,8 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in New Issue