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
739 B
25 lines
739 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>EduCoder</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
|
|
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= stylesheet_link_tag 'college', media: 'all','data-turbolinks-track': 'reload' %>
|
|
<%= javascript_include_tag 'college', 'data-turbolinks-track': 'reload' %>
|
|
</head>
|
|
|
|
<% body_class = [params[:controller].gsub(/\//, '-').gsub('_', '-'), params[:action], 'page'].join('-') %>
|
|
<body class="<%= body_class %>">
|
|
<%= render 'colleges/shared/navbar' %>
|
|
<!-- Page Content -->
|
|
<div class="college-body-container">
|
|
<%= yield %>
|
|
</div>
|
|
</body>
|
|
</html>
|