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

24 lines
517 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">
<!-- does not work
<link charset="utf-8" href="/stylesheets/mapp.css" media="screen" rel="stylesheet" type="text/css">
-->
<%= stylesheet_link_tag "/stylesheets/mapp.css" %>
<%= javascript_script_tag "/javascripts/mapp.js" %>
<title><%= @title %></title>
</head>
<body>
<%= yield %>
</body>
</html>