aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/layouts/application.html.erb
blob: ca57c37ed9518a73f8c41edff4fb41e005a01c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html ng-app="nt.Notes">
<head>
  <title>Notes</title>
  <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
  <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  <%= csrf_meta_tags %>
</head>
<body ng-controller="MainController">

<%= yield %>

</body>
</html>