mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-07 21:48:13 -08:00
24 lines
776 B
Text
24 lines
776 B
Text
<!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">
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
<%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>
|
|
<%# <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> %>
|
|
</head>
|
|
|
|
<body>
|
|
<%= render partial: 'layouts/nav' %>
|
|
<%= yield %>
|
|
|
|
<!-- Footer-->
|
|
<footer class="py-5 bg-dark-blue">
|
|
<div class="container px-5"><p class="m-0 text-center text-white">Copyright © ECP 2023</p></div>
|
|
</footer>
|
|
</body>
|
|
</html>
|