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

17 lines
386 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/mapp.css" %>
<%= javascript_script_tag "/javascripts/mapp.js" %>
<title><%= @title %></title>
</head>
<body>
<%= yield %>
</body>
</html>