mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-16 10:45:54 -07:00
Add basic text and structure for site
This commit is contained in:
parent
4f2339709f
commit
f617238594
17 changed files with 511 additions and 4 deletions
|
|
@ -1,8 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EcpOrg</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<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 %>
|
||||
|
||||
|
|
@ -11,6 +17,37 @@
|
|||
</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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue