DistroPropaganda/code/rails40/depot_client/app/views/layouts/application.html.erb

15 lines
235 B
Text
Raw Normal View History

2018-11-24 13:20:20 +01:00
<!DOCTYPE html>
<html>
<head>
<title>DepotClient</title>
<%= stylesheet_link_tag "application", media: "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>