mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
command would continue to run rspec as the default command. Added stylesheets to assets.rb so they'll be included when precompiling assets in production.
34 lines
1.2 KiB
Text
34 lines
1.2 KiB
Text
<html>
|
|
<head>
|
|
<title>MCIEA</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Bitter:400,600,700" rel="stylesheet" type="text/css"/>
|
|
<link href="https://fonts.googleapis.com/css?family=Cabin:400,600,700" rel="stylesheet" type="text/css"/>
|
|
<%= stylesheet_link_tag 'sqm', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
<%= stylesheet_link_tag 'welcome', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
<%= render partial: 'layouts/google_analytics', locals: { google_analytics_id: @google_analytics_id } %>
|
|
<%= render partial: 'layouts/hotjar', locals: { hotjar_id: @hotjar_id } %>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<div class="container">
|
|
<div class="row py-4 justify-content-between align-items-center">
|
|
<div class="col d-flex justify-content-start align-items-center">
|
|
<%= link_to image_tag('sqm_logo.png', alt: 'MCIEA School Quality Measures Dashboard', class: 'height-56'), welcome_path, class: 'me-7' %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<%= yield %>
|
|
|
|
<div>
|
|
<%= render partial: 'layouts/footer' %>
|
|
</div>
|
|
|
|
<script>
|
|
window.schools = <%= @schools.map{ |school| school_mapper(school) }.to_json.html_safe %>;
|
|
</script>
|
|
</body>
|
|
</html>
|