Files
grecia/app/views/admin/homepage/show.html.erb
2018-05-28 18:17:26 +02:00

49 lines
1.2 KiB
Plaintext

<h2><%= t("admin.homepage.title") %></h2>
<p><%= t("admin.homepage.description") %></p>
<div id="header">
<h3 class="inline-block"><%= t("admin.homepage.header_title") %></h3>
<div class="float-right">
<%= link_to t("admin.homepage.create_header"), new_admin_widget_card_path(header_card: true), class: "button" %>
</div>
<% if @header.present? %>
<%= render "cards", cards: @header %>
<% else %>
<div class="callout primary clear">
<%= t("admin.homepage.no_header") %>
</div>
<% end %>
</div>
<hr>
<div id="cards">
<h3 class="inline-block"><%= t("admin.homepage.cards_title") %></h3>
<div class="float-right">
<%= link_to t("admin.homepage.create_card"), new_admin_widget_card_path, class: "button" %>
</div>
<% if @cards.present? %>
<%= render "cards", cards: @cards %>
<% else %>
<div class="callout primary clear">
<%= t("admin.homepage.no_cards") %>
</div>
<% end %>
</div>
<hr>
<% @settings.each do |setting| %>
<div class="callout">
<h3 class="inline-block"><%= t("settings.#{setting.key}") %></h3>
<div class="float-right">
<%= render "setting", setting: setting %>
</div>
</div>
<% end %>