DistroPropaganda/code/rails32/depot_d/app/views/layouts/application.html.erb
2018-11-24 13:20:20 +01:00

14 lines
274 B
Text

<!DOCTYPE html>
<html>
<head>
<title>Depot</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body class='<%= controller.controller_name %>'>
<%= yield %>
</body>
</html>