denny/ShinyCMS-ruby

View on GitHub
themes/coming_soon/views/pages/templates/index.html.erb

Summary

Maintainability
Test Coverage
    <header id="header">
      <h1><%= @page_title %></h1>
      <p><%= sanitize intro_text %></p>
    </header>

    <form id="signup-form" method="post" action="#">
      <input type="email" name="email" id="email" placeholder="Email Address" />
      <input type="submit" value="Sign Up" />
    </form>

    <footer id="footer">
      <ul class="icons">
    <% if twitter_url.present? %>
        <li><a href="<%= twitter_url %>" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
    <% end %>
    <% if instagram_url.present? %>
        <li><a href="<%= instagram_url %>" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
    <% end %>
    <% if github_url.present? %>
        <li><a href="<%= github_url %>" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
    <% end %>
    <% if email_address.present? %>
        <li><a href="<%= email_address %>" class="icon fa-envelope"><span class="label">Email</span></a></li>
    <% end %>
      </ul>

      <ul class="copyright">
        <li>&copy; <%= copyright_notice %></li>
      </ul>
    </footer>