aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/app/views/layouts/application.html.erb
blob: 7fd6b4f5163c7bc35960722a52480ed4a344174a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
  <title>Blog</title>
  <%= stylesheet_link_tag    "application", :media => "all" %>
  <%= javascript_include_tag "application" %>
  <%= csrf_meta_tags %>
</head>
<body style="background: #EEEEEE;">

<%= yield %>

</body>
</html>