Sha256: 05adf0f1151292448534ec2c4183d8f61965a2658fc798280604632bc612ffe8

Contents?: true

Size: 577 Bytes

Versions: 1

Compression:

Stored size: 577 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  <title><%= yield :title %> : Iconly</title>
  <%= favicon_link_tag 'favicon.png' %>

  <%= stylesheet_link_tag    'iconly/application', media: "all" %>
  <%= javascript_include_tag 'iconly/application' %>
  <%= csrf_meta_tags %>
</head>
<body>
  <%= render 'layouts/iconly/header' %>
  <%= render_flash %>

  <div class="app-body">
    <div class="container">
      <%= yield %>
    </div>

    <%= render 'layouts/iconly/footer' %>
  </div>

  <%= yield :script %>

  <script>
    $(function() { iconly.start(); });
  </script>
</body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iconly-1.0.0 app/views/layouts/iconly/application.html.erb