You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.7 KiB
54 lines
2.7 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>EdCommonwealth</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<!-- Favicon-->
|
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
|
|
<!-- Bootstrap icons-->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
|
|
<link href="css/style.css" rel="stylesheet">
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
<%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Responsive navbar-->
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
|
<div class="container px-5">
|
|
<a class="navbar-brand" href="/">EdCommonwealth</a>
|
|
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
|
|
<li class="nav-item"><%= link_to "Home", root_path, class: "nav-link active" %></li>
|
|
<li class="nav-item"><%= link_to "School Quality Measures", sqm_index_path, class: "nav-link" %></li>
|
|
<li class="nav-item"><%= link_to "Quality Performance Assessment", qpa_index_path, class: "nav-link" %></li>
|
|
<li class="nav-item"><%= link_to "Team", team_index_path, class: "nav-link" %></li>
|
|
<li class="nav-item"><%= link_to "About", about_index_path, class: "nav-link" %></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<%= yield %>
|
|
|
|
<!-- Footer-->
|
|
<footer class="py-5 bg-dark">
|
|
<div class="container px-5"><p class="m-0 text-center text-white">Copyright © ECP 2022</p></div>
|
|
</footer>
|
|
<!-- Bootstrap core JS-->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Core theme JS-->
|
|
<script src="js/scripts.js"></script>
|
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
|
|
<!-- * * SB Forms JS * *-->
|
|
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
|
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
|
|
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
|
|
</body>
|
|
</html>
|