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.
25 lines
776 B
25 lines
776 B
<!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 2022</p></div>
|
|
</footer>
|
|
</body>
|
|
</html>
|