This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/app/views/main/index.html.erb

23 lines
772 B
Plaintext
Raw Normal View History

2018-06-28 09:35:36 -04:00
<% unless flash.empty? %>
<%= render "shared/error_banner" do %>
<% flash.each do |key, value| %>
<%= content_tag :div, value, class: "flash #{key} d-inline" %>
<% end %>
<% end %>
<% end %>
2018-06-13 15:51:10 -04:00
<div class="background landing-section">
2018-06-08 14:44:08 -04:00
<div class="d-flex align-items-center" style="height: 100%;">
<div class="container text-center">
2018-07-17 11:57:49 -04:00
<h1 id="main-text" class="font-weight-400 responsive-header"><%= t("landing.welcome") %></h1>
<h4 class="text-muted"><%= t("landing.about") %></h4>
2018-06-08 14:44:08 -04:00
2018-07-23 12:23:59 -04:00
<%= link_to "https://youtu.be/Hso8yLzkqj8", class: "d-inline-block p-3", target: "_blank" do %>
2018-07-17 11:57:49 -04:00
<h4><%= t("landing.video") %> <i class="far fa-play-circle"></i></h4>
2018-06-08 14:44:08 -04:00
<% end %>
</div>
2018-06-06 14:51:32 -04:00
</div>
2018-05-24 16:59:20 -04:00
</div>
2018-05-07 16:06:01 -04:00
2018-06-06 14:51:32 -04:00
<%= render "shared/features" %>