Open-Source-Access-Control-.../app/views/layouts/application.html.erb

20 lines
404 B
Plaintext
Raw Normal View History

2012-08-31 06:54:25 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Dooraccess</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<div id="header">
<a href="/users">Users</a>
<a href="/door_logs">Logs</a>
</div>
<p class="notice"><%= notice %></p>
<p class="alert"><%= alert %></p>
2012-08-31 06:54:25 +00:00
<%= yield %>
</body>
</html>