Sha256: 7290ab8da20f10dcf527604cebece5fc24c46d541425de19bcaaaaed6c7bd99c

Contents?: true

Size: 1.97 KB

Versions: 7

Compression:

Stored size: 1.97 KB

Contents

<!DOCTYPE html>
<html lang="<%=I18n.locale%>">
  <head>
    <meta charset="UTF-8">
    <meta name="apple-mobile-web-app-capable" content="yes">

    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title><%= Settings.app_name rescue "Thecore" %></title>

    <%= tag("link", rel: "manifest", href: asset_path("manifest.json", skip_pipeline: true)) %>
    <meta name="turbolinks-cache-control" content="no-cache">

    <%# Getting all the assets needed by thecore from all the gems %>
    <%= javascript_include_tag('thecore_ui_commons/thecore-devise', 'data-turbolinks-track' => true)%>
    <%= get_asset_tags_for("thecore")%>
    <%= stylesheet_link_tag('application', media: 'all', 'data-turbolinks-track' => true) if (Rails.application.assets || ::Sprockets::Railtie.build_environment(Rails.application)).find_asset("application.css")%>
    <%= javascript_include_tag('application', 'data-turbolinks-track' => true) if (Rails.application.assets || ::Sprockets::Railtie.build_environment(Rails.application)).find_asset("application.js") %>
    
    <%= favicon_link_tag 'apple-touch-icon.png', rel: 'apple-touch-icon', sizes: "180x180" %>
    <%= favicon_link_tag 'favicon-32x32.png', rel: 'icon', sizes: "32x32" %>
    <%= favicon_link_tag 'favicon-16x16.png', rel: 'icon', sizes: "16x16" %>
    <%= favicon_link_tag 'safari-pinned-tab.svg', rel: 'mask-icon', color: "#5bbad5" %>
    <meta name="theme-color" content="#3b4e59">

    <%= csrf_meta_tags %>
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]> <%= javascript_include_tag "ie" %> <![endif]-->
  </head>
  <body>
    <div class="jumbotron vertical-center">
      <div class="container">
        <div class="logos">
          <%=render partial: 'layouts/logos'%>
        </div>
        <%= yield %>
      </div>
    </div>


    <%- unless flash.blank? %>
      <%= render partial: 'shared/flash' %>
    <%-end%>

    <%= render 'layouts/footer' %>
  </body>
</html>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
thecore_ui_commons-2.5.2 app/views/layouts/thecore.html.erb
thecore_ui_commons-2.5.1 app/views/layouts/thecore.html.erb
thecore_ui_commons-2.5.0 app/views/layouts/thecore.html.erb
thecore_ui_commons-2.4.10 app/views/layouts/thecore.html.erb
thecore_ui_commons-2.4.9 app/views/layouts/thecore.html.erb
thecore_ui_commons-2.4.8 app/views/layouts/thecore.html.erb
thecore_ui_commons-2.4.7 app/views/layouts/thecore.html.erb