sinatra-static-assets/examples/summer/views/layout.erb

17 lines
384 B
Plaintext

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<%= stylesheet_link_tag "/stylesheets/app.css" %>
<%= javascript_script_tag "/javascripts/app.js" %>
<title><%= @title %></title>
</head>
<body>
<%= yield %>
</body>
</html>