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

18 lines
330 B
Plaintext
Raw Normal View History

2012-08-25 04:14:51 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Dooraccess</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
2012-08-25 06:28:00 +00:00
<div id="header">
<a href="/users">Users</a>
<a href="/door_logs">Logs</a>
</div>
2012-08-25 04:14:51 +00:00
<%= yield %>
</body>
</html>