59 lines
2.8 KiB
Text
59 lines
2.8 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<%# The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags %>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<%= csrf_meta_tags %>
|
|
<%= favicon_link_tag SiteConfig.favicon_url %>
|
|
<title><%= controller_name.titleize %></title>
|
|
|
|
<!-- StimulusJS -->
|
|
<%= javascript_packs_with_chunks_tag "internal", defer: true %>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
|
|
|
|
<!-- Bootstrap and FontAwesome -->
|
|
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
|
|
|
<%= stylesheet_link_tag "internal/layout" %>
|
|
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-xl navbar-light bg-light">
|
|
<a class="navbar-brand" href="#">
|
|
<img src="<%= asset_path("rainbowdev.svg") %>" width="30" height="30" class="d-inline-block align-top" alt="DEV Logo">
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
|
<%= render "internal/shared/navbar" %>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container mt-3">
|
|
<% flash.each do |type, message| %>
|
|
<div class="alert alert-<%= type == "notice" ? "success" : "danger" %>">
|
|
<button class="close" data-dismiss="alert">
|
|
<i class="fa fa-times" aria-hidden="true"></i>
|
|
</button>
|
|
<%= message %>
|
|
</div>
|
|
<% end %>
|
|
<h1><%= controller_name.titleize %></h1>
|
|
<%= yield %>
|
|
</div>
|
|
|
|
<!-- Bootstrap Dependencies -->
|
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
|
|
|
|
<%= javascript_include_tag "internal" %>
|
|
|
|
</body>
|
|
</html>
|